/* Main site styles */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f8f9fa;
}

.navbar {
    box-shadow: 0 2px 4px rgba(0,0,0,.1);
}

.card {
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
    border: 1px solid rgba(0, 0, 0, 0.125);
    transition: box-shadow 0.3s ease-in-out;
}

.card:hover {
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}

.btn {
    border-radius: 0.375rem;
}

/* Dashboard specific styles */
.display-6 {
    font-size: 1.5rem;
}

/* Custom styles for defehub */

/* Highlight effect for referral link */
.highlight {
    animation: highlight 2s ease-in-out;
    box-shadow: 0 0 10px rgba(13, 110, 253, 0.5);
    border: 2px solid #0d6efd;
}

@keyframes highlight {
    0% { box-shadow: 0 0 5px rgba(13, 110, 253, 0.3); border: 2px solid #0d6efd; }
    50% { box-shadow: 0 0 20px rgba(13, 110, 253, 0.8); border: 2px solid #0d6efd; }
    100% { box-shadow: 0 0 5px rgba(13, 110, 253, 0.3); border: 2px solid #0d6efd; }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .navbar-nav .nav-link {
        padding: 0.5rem 0.75rem;
    }
    
    .dropdown-menu {
        position: absolute;
    }
}

/* Maintenance mode page */
.maintenance-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-color: #f8f9fa;
}

.maintenance-card {
    max-width: 500px;
    text-align: center;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}