/* Edit Profile View Styles */
#view-edit-profile {
    padding-bottom: 80px;
    /* Space for bottom nav */
}

.edit-profile-header {
    text-align: center;
    margin-bottom: 30px;
}

.edit-profile-header h2 {
    font-size: 24px;
    font-weight: 800;
    margin: 0;
    color: #111;
}

.edit-profile-form {
    background: #fff;
    border-radius: 20px;
    padding: 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.form-section-title {
    font-size: 14px;
    font-weight: 700;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
    margin-top: 25px;
    border-bottom: 1px solid #eee;
    padding-bottom: 5px;
}

.form-section-title:first-child {
    margin-top: 0;
}

.form-row {
    display: flex;
    gap: 15px;
}

.form-col {
    flex: 1;
}

.bjj-input-group {
    margin-bottom: 20px;
}

.bjj-input-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #444;
    margin-bottom: 8px;
}

.bjj-input-group input,
.bjj-input-group select,
.bjj-input-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #eee;
    border-radius: 12px;
    font-size: 15px;
    background: #f9f9f9;
    transition: all 0.2s;
    box-sizing: border-box;
    min-height: 48px;
    /* Ensure sufficient height */
    line-height: 1.5;
    /* Proper line height */
}

.bjj-input-group select {
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 16px;
    padding-right: 40px;
    /* Space for arrow */
    background-color: #f9f9f9;
}

.bjj-input-group input:focus,
.bjj-input-group select:focus,
.bjj-input-group textarea:focus {
    background: #fff;
    border-color: #000;
    outline: none;
}

.bjj-input-group textarea {
    min-height: 100px;
    resize: vertical;
}

.btn-save-profile {
    width: 100%;
    padding: 15px;
    background: #000;
    color: #fff;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    margin-top: 20px;
    transition: transform 0.1s;
}

.btn-save-profile:active {
    transform: scale(0.98);
}

.btn-cancel-profile {
    width: 100%;
    padding: 15px;
    background: transparent;
    color: #666;
    border: none;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    margin-top: 10px;
}