﻿.dashboard-container {
    min-height: 80vh;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    background: #f5f7fa;
}

.dashboard-card {
    background: #fff;
    border-radius: 1.5rem;
    box-shadow: 0 8px 40px rgba(0,51,102,0.07), 0 1.5px 6px rgba(32,201,151,0.09);
    padding: 2.5rem 2.5rem 2rem 2.5rem;
    width: 100%;
    margin: 0 auto;
    animation: fadeIn 0.8s cubic-bezier(.4,0,.2,1);
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}







/* Chart area */
.dashboard-section {
    background: #f8fafd;
    border-radius: 1.1rem;
    box-shadow: 0 2px 12px rgba(13,110,253,0.04);
    padding: 1.5rem 1.5rem 1.2rem 1.5rem;
    margin-bottom: 1.2rem;
}

    .dashboard-section h3, .dashboard-section h4 {
        color: #003366;
        font-weight: 700;
    }

/* Info section */
.info-list {
    margin-left: 0.5rem;
}

    .info-list div {
        font-size: 1.08rem;
        margin-bottom: 0.3rem;
    }

    .info-list span {
        color: #0d6efd;
        font-weight: 600;
        margin-right: 0.3rem;
    }

/* Profile Card */
.profile-block {
    background: #f8fafd;
    border-radius: 1.1rem;
    box-shadow: 0 2px 12px rgba(13,110,253,0.04);
    padding: 2rem 1.2rem 1.2rem 1.2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 380px;
}

.profile-img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid #e3eafc;
    box-shadow: 0 2px 12px #0d6efd11;
    background: #f8fafd;
}



.welcome-block {
    margin-bottom: 1.5rem;
}

.username {
    color: #0d6efd;
    font-weight: 700;
}

.user-email {
    color: #888;
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
}

/* Alert */
.modern-alert {
    font-size: 1.15rem;
    border-radius: 1rem;
    background: #fff8e1;
    color: #b28704;
    border: 1px solid #ffe082;
    box-shadow: 0 2px 8px #ffe08233;
}

/* Responsive */
@media (max-width: 991px) {
    .dashboard-card {
        padding: 1.2rem 0.7rem;
    }

    .profile-img {
        width: 90px;
        height: 90px;
    }

    .company-logo {
        max-width: 80px;
        max-height: 40px;
    }

    .dashboard-section {
        padding: 1rem 0.5rem 0.8rem 0.5rem;
    }
}

@media (max-width: 575px) {
    .dashboard-card {
        padding: 0.7rem 0.2rem;
        border-radius: 0.7rem;
    }

    .dashboard-container {
        padding: 1rem 0;
    }

    .dashboard-section {
        padding: 0.6rem 0.2rem 0.5rem 0.2rem;
    }

    .profile-block {
        padding: 1rem 0.2rem 0.7rem 0.2rem;
    }
}
