/* User Info Global Styles */
.user-info-container {
    max-width: 1200px;
    padding: 2rem 1rem;
}

/* User Profile Card Styles */
.user-profile-card {
    background-color: #1e2139;
    border-radius: 15px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3);
    overflow: hidden;
}

.user-profile-header {
    background-color: var(--primary-dark) !important;
    padding: 1.5rem;
    text-align: center;
}

.user-profile-title {
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0;
}

.user-profile-body {
    padding: 2rem;
}

/* User Avatar Section */
.user-avatar-section {
    margin-bottom: 2rem;
}

/* .user-avatar {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    overflow: hidden;
    border: 5px solid #2c3142;
    margin: 0 auto;
}

.user-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
} */

.user-name {
    color: #ffffff;
    margin-top: 1rem;
    font-weight: 600;
}

/* User Details */
.user-details {
    background-color: #2c3142;
    border-radius: 10px;
    padding: 1rem;
}

.detail-row {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #3c4257;
}

.detail-row:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.detail-icon {
    background-color: var(--primary-dark) !important;
    color: var(--accent-green);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    flex-shrink: 0;
}

.detail-content {
    display: flex;
    flex-direction: column;
}

.detail-label {
    color: #b6b6b6;
    font-size: 0.875rem;
    margin-bottom: 0.25rem;
}

.detail-value {
    color: #ffffff;
    font-weight: 500;
}

/* User Actions */
.user-actions {
    margin-top: 2rem;
}

.btn-primary-custom {
    background-color: var(--primary-light);
    color: var(--primary-dark) !important;
    border: none;
    padding: 0.75rem;
    font-weight: 600;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.btn-primary-custom:hover {
    background-color: #00cc6e;
    color: var(--primary-dark) !important;
    transform: translateY(-2px);
}

.btn-outline-custom {
    background-color: transparent;
    color: var(--accent-green);
    border: 2px solid var(--accent-green);
    padding: 0.75rem;
    font-weight: 600;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

.btn-outline-custom:hover {
    background-color: var(--accent-green);
    color: var(--primary-dark) !important;
    transform: translateY(-2px);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .user-profile-body {
        padding: 1rem;
    }

    .user-avatar {
        width: 20px;
        height: 20px;
    }

    .detail-row {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .detail-icon {
        margin-right: 0;
        margin-bottom: 1rem;
    }
    .btn-primary-custom{
        width: 100px;
        padding: 6px;
    }
}
