<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/*  styles-admin-dashboard.css
    Purpose      Dark-theme layout for the admin dashboard: overview cards,
                 activity log, action buttons, and responsive behaviour.
    Used by      public/admin-dashboard.html
    Depends on   Global resets/colours from head.html
    Last updated 31 Jul 2025
*/


/* General layout */
body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    box-sizing: border-box;
}

.dashboard-container {
    margin: 120px auto; /* Adjusted margin for spacing from the navbar */
    max-width: 1200px;
    padding: 20px;
    background-color: #333;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    color: #fff;
}

/* Heading styles */
.dashboard-container h1 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 20px;
}

.dashboard-overview {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.card {
    background-color: #444;
    flex: 1 1 calc(25% - 20px); /* Flex items to take up 25% width with spacing */
    margin: 10px;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.2);
    text-align: center;
}

.card h3 {
    font-size: 2rem;
    margin-bottom: 10px;
}

.card p {
    font-size: 1.6rem;
    font-weight: bold;
}

/* Shaded for inactive cards */
.card.disabled {
    background-color: #666; /* Lighter grey to indicate inactive */
    color: #bbb; /* Light grey text color */
}

/* Dashboard detail section */
.dashboard-detail {
    background-color: #444;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.2);
}

.dashboard-detail h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.activity-log ul {
    list-style-type: none;
    padding: 0;
}

.activity-log li {
    margin: 5px 0;
    padding: 10px;
    background-color: #555;
    border-radius: 5px;
    font-size: 1rem;
}

/* Media queries for responsiveness */
@media (max-width: 768px) {
    .dashboard-overview {
        flex-direction: column;
    }

    .card {
        flex: 1 1 100%; /* Cards take full width on smaller screens */
        margin: 10px 0;
    }
}


.disabled-text {
    color: #888; /* Faint grey color for inactive elements */
    font-style: italic; /* Optional: italic for additional emphasis */
}


/* Button Styling */
    .action-button {
        padding: 10px 20px;
        font-size: 16px;
        font-weight: bold;
        color: white;
        background-color: #4EA1D3;
        border: none;
        border-radius: 5px;
        cursor: pointer;
        margin-top: 20px;
        text-align: center;
    }

    .action-button:hover {
        background-color: #3a89b2;
    }

    /* Center Actions */
    .dashboard-actions {
        text-align: center;
        margin-top: 30px;
    }

    /* Disabled Text Styling */
    .disabled-text {
        color: #999;
    }
</pre></body></html>