/* assets/css/style.css */
.navbar {
    background-color: #000080 !important;  /* Force navy blue background */
    padding: 1rem;
    margin-bottom: 2rem;
    width: 100%;
}

.navbar-dark .navbar-nav .nav-link {
    color: #ffffff !important;  /* Force white text */
    padding: 0.5rem 1rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.navbar-dark .navbar-nav .nav-link:hover {
    color: rgba(255, 255, 255, 0.85) !important;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
}

.navbar-dark .navbar-nav .nav-link.active {
    color: #ffffff !important;
    background-color: rgba(255, 255, 255, 0.15);
    border-radius: 4px;
}

.logo-area {
    padding: 1rem;
    background-color: #fff;
    border-bottom: 1px solid #eee;
}

.main-content {
    padding-top: 2rem;
}

.card {
    margin-bottom: 20px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.table th {
    background-color: #f8f9fa;
}

.footer {
    background-color: #000080;
    color: white;
    padding: 3rem 0;
    margin-top: 3rem;
}

.footer h3 {
    color: white;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.footer p,
.footer a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
}

.footer a:hover {
    color: white;
    text-decoration: underline;
}

.footer ul {
    list-style: none;
    padding-left: 0;
}

.footer ul li {
    margin-bottom: 0.75rem;
}

.footer .social-links a {
    color: white;
    margin-right: 15px;
    font-size: 1.2rem;
}

.footer .location-icon,
.footer .email-icon,
.footer .phone-icon {
    margin-right: 8px;
    color: white;
}

.footer-bottom {
    background-color: rgba(0, 0, 0, 0.2);
    padding: 1.5rem 0;
    margin-top: 2rem;
    color: white;
}

.heart-icon {
    color: #ff4444;
    margin: 0 5px;
}