body {
    font-family: 'Tajawal', 'Segoe UI', Tahoma, sans-serif;
    background-color: #f8f9fa;
}

.account-card {
    transition: transform 0.3s;
    border: none;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    height: 100%;
}

.account-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.account-card img {
    height: 200px;
    object-fit: cover;
    width: 100%;
}

.account-card .card-body {
    padding: 1rem;
}

.navbar-brand {
    font-weight: bold;
    font-size: 1.5rem;
}

footer {
    margin-top: 50px;
}

.footer-links a {
    text-decoration: none;
    margin: 0 5px;
}

.footer-links a:hover {
    text-decoration: underline;
}

#cookieConsent {
    box-shadow: 0 -2px 10px rgba(0,0,0,0.3);
}

@media (max-width: 768px) {
    .account-card img {
        height: 150px;
    }
}

