.dashboard-container {
    padding: 40px 0;
}

.welcome-card {
    background: linear-gradient(135deg, #4073c0 0%, #5e60ce 100%);
    color: white;
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 40px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.welcome-card h1 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 10px;
}

.welcome-card p {
    opacity: 0.9;
    margin-bottom: 0;
}

.dashboard-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.dashboard-card {
    background-color: white;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.dashboard-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.dashboard-card h3 {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 18px;
}

.dashboard-card h3 i {
    font-size: 22px;
}

.dashboard-card p {
    color: var(--text-color);
    margin-bottom: 20px;
    font-size: 14px;
}

.profile-section {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

.profile-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: #e5e5e5;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: var(--primary-color);
    font-weight: 600;
}

.profile-info h2 {
    font-size: 22px;
    margin-bottom: 5px;
}

.profile-info p {
    color: #666;
    margin-bottom: 0;
}

.logout-button {
    margin-top: 20px;
}

.user-profile-dropdown {
    position: relative;
}

.profile-trigger {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    padding: 6px 10px;
    border-radius: 30px;
    background-color: #f5f7fa;
    transition: all 0.3s ease;
}

.profile-trigger:hover {
    background-color: #e4e9f2;
}

.avatar-circle {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 14px;
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 5px);
    right: 0;
    width: 200px;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    padding: 8px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
}

.dropdown-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 15px;
    color: var(--text-color);
    transition: background-color 0.2s ease;
}

.dropdown-item:hover {
    background-color: #f5f7fa;
    color: var(--primary-color);
}

.dropdown-divider {
    height: 1px;
    background-color: #e4e9f2;
    margin: 5px 0;
}

/* Mobile responsive styles */
@media (max-width: 768px) {
    .profile-trigger span {
        display: none;
    }
}