/* ===== Server-Side Admin Panel ===== */

/* General container padding */
.container {
    max-width: 900px;
    margin: 0 auto;
    padding: 30px 15px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #333;
}

/* Header */
h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #0d6efd;
}

/* Description paragraph */
p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #555;
    text-align: center;
}

/* Admin button */
a.btn {
    padding: 12px 25px;
    font-size: 1.2rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

a.btn:hover {
    background-color: #0056b3;
    color: #fff;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

/* Quick Links */
h3 {
    font-size: 1.8rem;
    color: #0d6efd;
    margin-bottom: 15px;
    text-align: center;
}

ul {
    list-style: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}

ul li {
    background-color: #f1f1f1;
    padding: 10px 20px;
    border-radius: 6px;
    transition: all 0.3s ease;
}

ul li a {
    color: #0d6efd;
    font-weight: 500;
    text-decoration: none;
}

ul li:hover {
    background-color: #0d6efd;
}

ul li:hover a {
    color: #fff;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }
    h3 {
        font-size: 1.5rem;
    }
    ul {
        flex-direction: column;
        gap: 10px;
    }
    a.btn {
        font-size: 1rem;
        padding: 10px 20px;
    }
}