/* Dashboard Styles */

.dashboard-container {
    padding: 1.5rem 0;
    min-height: 100vh;
    background-color: #f8f9fa;
}

.dashboard-title {
    color: #16404D;
    font-weight: 600;
    font-size: 1.75rem;
}

.dashboard-logo {
    height: 100px;
    border: 10px white solid;
    box-shadow: rgba(72, 135, 202, 0.6) 0 0 30px 10px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.dashboard-card {
    transition: all 0.3s ease;
    border-radius: 12px;
    height: 100%;
    background-color: #fff;
    overflow: hidden;
    position: relative;
}

.dashboard-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1) !important;
}

.dashboard-card .card-body {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.icon-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: rgba(22, 64, 77, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    color: #16404D;
    transition: all 0.3s ease;
}

.dashboard-card:hover .icon-circle {
    transform: scale(1.1);
    background-color: rgba(22, 64, 77, 0.2);
}

.card-title {
    font-weight: 600;
    margin-top: 1rem;
    color: #16404D;
}

.card-text {
    color: #6c757d;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.dashboard-card .btn-primary {
    background-color: #16404D;
    border-color: #16404D;
    transition: all 0.3s ease;
    padding: 0.5rem 1.5rem;
    font-weight: 500;
}

.dashboard-card .btn-primary:hover {
    background-color: #0f2d36;
    border-color: #0f2d36;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(22, 64, 77, 0.3);
}

/* Animation for cards */
.animate__fadeInUp {
    animation-duration: 0.6s;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .dashboard-card {
        margin-bottom: 1rem;
    }
    
    .dashboard-title {
        font-size: 1.5rem;
    }
}

@media (max-width: 768px) {
    .dashboard-container {
        padding: 1rem 0;
    }
    
    .dashboard-title {
        font-size: 1.25rem;
    }
    
    .dashboard-logo {
        height: 80px;
        margin-bottom: 1rem;
    }
    
    .icon-circle {
        width: 60px;
        height: 60px;
    }
    
    .card-title {
        font-size: 1.25rem;
    }
}
