/* General Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
}

.dashboard-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    background: #fff;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

header h1 {
    text-align: center;
    margin: 0;
    padding: 10px;
    background: #007bff;
    color: white;
    font-size: 24px;
}

/* Navigation Styles */
.dashboard-nav {
    display: flex;
    flex-wrap: wrap; /* Allows wrapping for smaller screens */
    justify-content: space-between;
    gap: 20px; /* Adds space between the columns */
    margin-top: 20px;
}

.dashboard-nav ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    flex: 1;
    min-width: 250px; /* Ensures each column has a minimum width */
    box-sizing: border-box; /* Ensures padding and borders are included in width */
}

.dashboard-nav ul li {
    margin: 10px 0;
}

.dashboard-nav ul li a {
    text-decoration: none;
    padding: 10px;
    display: block;
    border-radius: 5px;
    transition: background 0.3s ease;
}

/* Individual Styles for Each Section */
.list-style-one {
    background-color: #ffe4e1; /* Light pink */
    font-family: 'Georgia', serif;
}

.list-style-one li a {
    color: #800000; /* Maroon */
}

.list-style-one li a:hover {
    background-color: #f08080; /* Light Coral */
}

.list-style-two {
    background-color: #e6f7ff; /* Light Blue */
    font-family: 'Courier New', monospace;
}

.list-style-two li a {
    color: #0056b3; /* Blue */
}

.list-style-two li a:hover {
    background-color: #add8e6; /* Lighter Blue */
}

.list-style-three {
    background-color: #e8f5e9; /* Light Green */
    font-family: 'Verdana', sans-serif;
}

.list-style-three li a {
    color: #2e7d32; /* Green */
}

.list-style-three li a:hover {
    background-color: #a5d6a7; /* Lighter Green */
}

.list-style-four {
    background-color: #ffe4e1; /* Light Green */
    font-family: 'Verdana', sans-serif;
}

.list-style-four li a {
    color: #f08080; /* Green */
}

.list-style-four li a:hover {
    background-color: #A5D6A7; /* Lighter Green */
}


/* Responsive Design */

/* For screens 768px or smaller (tablets and smaller devices) */
@media (max-width: 768px) {
    .dashboard-nav {
        flex-direction: column; /* Stack the sections vertically */
    }

    .dashboard-nav ul {
        min-width: 100%; /* Make each section take the full width */
    }
}

/* For screens 480px or smaller (mobile phones) */
@media (max-width: 480px) {
    header h1 {
        font-size: 18px;
    }

    .dashboard-nav ul li a {
        font-size: 14px;
        padding: 8px; /* Adjust padding for smaller screens */
    }
}
