.profile-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

.profile-header {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
    position: relative;
}

.back-btn {
    position: absolute;
    left: 0;
    text-decoration: none;
    color: var(--text-color);
    font-size: 16px;
}

.profile-header h1 {
    flex: 1;
    text-align: center;
    margin: 0;
    color: var(--text-color);
}

.profile-content {
    background: white;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.avatar-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 30px;
}

.avatar-box {
    width: 150px;
    height: 150px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 10px;
}

.avatar {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.avatar-label {
    color: var(--text-color);
    margin: 0;
}

.profile-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.info-group {
    display: flex;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid var(--border-color);
}

.info-group label {
    width: 150px;
    color: var(--text-color);
    font-weight: 500;
}

.info-group span {
    flex: 1;
    color: var(--text-color);
}

.change-password-btn {
    padding: 6px 15px;
    background-color: transparent;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.change-password-btn:hover {
    background-color: var(--primary-color);
    color: white;
}

.submit-btn {
    width: 100%;
    padding: 10px;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
}

.submit-btn:hover {
    opacity: 0.9;
}

.logout-btn {
    padding: 6px 15px;
    background-color: #ff4d4f;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.logout-btn:hover {
    opacity: 0.9;
    background-color: #ff7875;
} 