﻿.admin-dashboard {
    max-width: 1200px;
    margin: 60px auto;
    padding: 40px;
    background-color: var(--primary-bg);
    color: var(--text-color);
    border-radius: 12px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
    font-family: 'Segoe UI', sans-serif;
}

    .admin-dashboard h2 {
        text-align: center;
        margin-bottom: 30px;
        font-size: 2.5rem;
        color: var(--accent);
        text-shadow: 0 0 5px var(--accent);
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
    }

        .admin-dashboard h2::before {
            content: "🧠";
        }

.table-container {
    overflow-x: auto;
}

table {
    width: 100%;
    border-collapse: collapse;
    border-radius: 10px;
    overflow: hidden;
}

thead {
    background-color: var(--accent);
    color: #fff;
    text-align: left;
}

th, td {
    padding: 16px;
    border-bottom: 1px solid var(--accent);
    font-size: 0.95rem;
}

tbody tr:hover {
    background-color: rgba(255, 255, 255, 0.05);
    transition: background-color 0.3s ease;
}
