.profile-container {
    padding: 20px 0;
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 20px;
}

.profile-info-header {
    display: flex;
    align-items: center;
    gap: 20px;
}

.profile-avatar-large {
    width: 80px;
    height: 80px;
    background-color: #333;
    color: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2.5rem;
    font-weight: 700;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.upload-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 30%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-size: 1.2rem;
    opacity: 0;
    transition: opacity 0.2s;
}

.profile-avatar-large:hover .upload-overlay {
    opacity: 1;
}

.profile-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.profile-name-row {
    display: flex;
    align-items: center;
}

.profile-name-large {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-color);
}

.profile-status {
    font-size: 0.95rem;
    color: var(--secondary-text);
    margin-top: 5px;
}

.admin-panel-section {
    border-top: 10px solid #f5f5f5;
    /* Thicker divider */
    margin-top: 0;
    padding: 20px;
}

.request-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid var(--border-color);
}