body {
    background-color: #303030;
    color: #C1C1C1;
    font-family: 'Roboto', sans-serif;
}

a {
    color: #91C9C4;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #B8E3DF;
}

button {
    background-color: #5A595B;
    color: #EBEBEB;
    font-family: 'Roboto', sans-serif;
}

h2 {
    color: #EFAB3C;
}

.youtube {
    max-width: 100%;
    margin: 20px 0;
    border-radius: 4px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

/* Custom styles for Simple HTTP Server website */

/* Max width container for better readability */
.w3-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Improved navbar styling */
.w3-bar {
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

/* Active menu item - using teal */
.w3-bar .w3-button.w3-blue-grey {
    background-color: #91C9C4 !important;
    color: #155b5b !important;
}

.w3-bar .w3-button.w3-blue-grey:hover {
    background-color: #B8E3DF !important;
    color: #155b5b !important;
}

/* Card styling improvements */
.w3-card-4 {
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    transition: box-shadow 0.3s ease;
    background-color: #383838;
}

.w3-card-4:hover {
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

/* Card headers - using teal */
.w3-card-4 header.w3-container.w3-blue-grey {
    background-color: #91C9C4 !important;
}

.w3-card-4 header.w3-container.w3-blue-grey h3,
.w3-card-4 header.w3-container.w3-blue-grey p {
    color: #155b5b !important;
}

/* Card container content */
.w3-card-4 .w3-container {
    background-color: #383838;
}

/* Button styling */
.w3-button {
    transition: background-color 0.3s ease;
}

.w3-button.w3-blue-grey {
    background-color: #91C9C4 !important;
    color: #155b5b !important;
}

.w3-button.w3-blue-grey:hover {
    background-color: #B8E3DF !important;
    color: #155b5b !important;
}

/* Content sections */
.content-section {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background-color: #383838;
    border-radius: 4px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.content-section h3 {
    color: #EFAB3C;
    margin-top: 0;
}

.content-section ul {
    margin: 0;
    padding-left: 1.5rem;
}

.content-section li {
    margin-bottom: 0.5rem;
}

.content-section li:last-child {
    margin-bottom: 0;
}

/* Back to Latest Release panel */
.w3-panel.w3-leftbar.w3-border-blue.w3-pale-blue {
    border-left-color: #91C9C4 !important;
    background-color: #383838 !important;
}

.w3-panel.w3-leftbar.w3-border-blue.w3-pale-blue a {
    color: #91C9C4;
}

/* Responsive improvements */
@media screen and (max-width: 768px) {
    .w3-container {
        padding: 0 1rem;
    }
    
    .w3-card-4 {
        margin-bottom: 1rem;
    }
}