﻿/* === MAIN.CSS === */
/* Shared styles for all pages */

body {
    font-family: 'Poppins', sans-serif;
    background-color: #f8f9fa;
}

/* --- Navbar --- */
.navbar {
    background-color: #fff !important;
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.5rem;
}

.nav-link {
    font-weight: 500;
    color: #333;
}

    .nav-link.profile-icon {
        font-size: 1.5rem;
        color: #333;
    }

/* --- Footer --- */
.footer {
    background-color: #343a40;
    color: white;
    padding: 40px 0;
}

    .footer h5 {
        color: #fff;
        margin-bottom: 15px;
    }

    .footer a {
        color: #adb5bd;
        text-decoration: none;
        transition: color 0.2s;
    }

        .footer a:hover {
            color: #fff;
        }

    .footer .social-icons a {
        color: white;
        font-size: 1.5rem;
        margin-right: 15px;
    }

/* --- Shared Components --- */
.card {
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

    .card:hover {
        transform: translateY(-5px);
        transition: transform 0.2s;
    }
