
body {
    font-family: "Times New Roman", Times, serif;
    background: linear-gradient(to right, #0f2027, #203a43, #2c5364);
    color: white;
    min-height: 100vh;
    padding: 2rem;
    text-align: center;
}

.login-btn {
    position: absolute;
    top: 20px;
    right: 20px;
}

h1 {
    font-size: 3rem;
    margin-top: 4rem;
    margin-bottom: 1rem;
}

p {
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto 1rem;
    opacity: 0.95;
}

.categories {
    margin-top: 3rem;
}

.category {
    margin-bottom: 2rem;
}

.category img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 0 10px rgba(0,0,0,0.3);
    transition: transform 0.3s;
}

.category img:hover {
    transform: scale(1.05);
}

.category-title {
    margin-top: 0.5rem;
    font-weight: 500;
}

/* === ADMIN PANEL STYLING === */

.navbar-nav .nav-item .nav-link {
    color: white !important;
}

.container {
    max-width: 800px;
    margin-top: 20px;
}

h2 {
    margin-bottom: 1.5rem;
}
.card {
    background-color: rgba(15, 32, 39, 1);
    color: white;
    border: 1px solid rgba(15, 32, 39, 1);
}

