/* General Styles */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background-size: cover;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Header Styles */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.logo img {
    max-width: 240px;
    height: auto;
}

.actions a {
    margin-left: 10px;
    display: inline-block;
    text-decoration: none;
}

.actions img {
    height: 24px;
}

/* Main Content */
.content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.sidebar {
    text-align: center;
}

.sidebar-image {
    max-width: 100%;
    height: auto;
}

.main h2 {
    color: #8cb811;
}

/* Definition List Styles */
.entries {
    margin: 0;
    padding: 0;
}

.entries dt {
    font-weight: bold;
    margin-top: 10px;
}

.entries dt a {
    text-decoration: none;
    color: #005387;
}

.entries dt a:hover,
.entries dt a:focus {
    text-decoration: underline;
}

.entries dd {
    margin-left: 20px;
    margin-bottom: 10px;
    color: #333;
}


/* Responsive Design */
@media (min-width: 768px) {
    .content {
        flex-direction: row;
    }

    .sidebar {
        flex: 1;
    }

    .main {
        flex: 2;
    }
}
