body {
    font-family: Arial, sans-serif;
    background-color: #f2f2f2;
    margin: 0;
    padding: 0;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    background-color: #ffffff;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    display: flex;
}

.sidebar {
    flex: 1;
    padding: 20px;
    background-color: #f2f2f2;
}

.sidebar img {
    max-width: 100%;
    height: auto;
    margin-bottom: 20px;
}

ul {
    list-style: none;
    padding: 0;
}

ul li {
    margin-bottom: 10px;
}

ul li a {
    text-decoration: none;
    color: rgb(0,93,162);
}

.content {
    flex: 2;
    padding: 20px;
}

h2 {
    color: rgb(0,93,162);
}

p {
    color: #333;
}

form {
    margin-top: 10px;
}

label {
    display: block;
    margin-bottom: 10px;
}

input[type="radio"] {
    margin-right: 5px;
}

input[type="submit"] {
    background-color: rgb(0,93,162);
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
}

input[type="submit"]:hover {
    background-color: rgb(0,93,162);
}

.response-correct {
    color: #008000;
    font-weight: bold;
}

.response-incorrect {
    color: #ff0000;
    font-weight: bold;
}

.links {
    text-align: center; /* Center align the text within the "links" div */
}

ul {
    list-style: none;
    padding: 0;
}

ul li {
    margin-bottom: 10px;
}

ul li a {
    text-decoration: none;
    color: #005DA2; /* Change text color to 005DA2 */
}
/* ... (previous CSS styles) */

.social-icons {
    text-align: center; /* Center-align the social media icons */
    margin-top: 20px; /* Add spacing between links and social icons */
}

.social-icons a {
    display: inline-block;
    margin: 0 10px; /* Add spacing between social media icons */
}

.social-icons img {
    max-width: 30px; /* Adjust the width of the social media icons as needed */
}

/* ... (remaining CSS styles) */
a:active {
    background-color: #ff5733; 
    color: #fff; 
}



