.profile-container07 {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
    background-color: #F7FAFC;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    margin-left: 20%;
}

/* Breadcrumb Navigation */
.breadcrumb07 {
    display: flex;
    align-items: center;
    padding: 20px 0;
    font-size: 14px;
    color: #4A5568;
}

.breadcrumb-link07 {
    color: #3182CE;
    text-decoration: none;
    transition: color 0.2s;
}

.breadcrumb-link07:hover {
    color: #2C5282;
    text-decoration: underline;
}

.breadcrumb-separator07 {
    margin: 0 10px;
    font-size: 10px;
}

.breadcrumb-current07 {
    font-weight: 600;
    color: #2D3748;
}

/* Page Header */
.page-header07 {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #E2E8F0;
}

.page-title07 {
    font-size: 28px;
    font-weight: 700;
    color: #1A202C;
    margin-bottom: 8px;
}

.page-subtitle07 {
    font-size: 16px;
    color: #4A5568;
}

/* Main content */
.profile-main07 {
    background-color: #FFFFFF;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

/* Profile Photo Section */
.profile-photo-section07 {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid #E2E8F0;
}

.photo-container07 {
    position: relative;
    width: 150px;
    height: 150px;
    margin-bottom: 20px;
    cursor: pointer;
}

.profile-photo07 {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    border: 2px solid #E2E8F0;
    overflow: hidden;
    background-color: #EDF2F7;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.profile-photo07 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.photo-overlay07 {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.photo-container07:hover .photo-overlay07 {
    opacity: 1;
}

.overlay-icon07 {
    color: white;
    font-size: 30px;
}

.photo-controls07 {
    display: flex;
    gap: 15px;
    margin-bottom: 10px;
}

.hidden-input07 {
    display: none;
}

.btn-change-photo07 {
    background-color: #3182CE;
    color: white;
    border: none;
    border-radius: 6px;
    padding: 10px 15px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: background-color 0.2s;
}

.btn-change-photo07:hover {
    background-color: #2C5282;
}

.btn-remove-photo07 {
    background-color: transparent;
    color: #E53E3E;
    border: 1px solid #E53E3E;
    border-radius: 6px;
    padding: 10px 15px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s;
}

.btn-remove-photo07:hover {
    background-color: #FED7D7;
}

.photo-help-text07 {
    font-size: 12px;
    color: #718096;
    margin-top: 8px;
}

/* Upload Progress */
.upload-progress-container07 {
    width: 100%;
    max-width: 300px;
    margin-top: 15px;
}

.progress-bar-outer07 {
    width: 100%;
    height: 8px;
    background-color: #EDF2F7;
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 5px;
}

.progress-bar-inner07 {
    height: 100%;
    background-color: #4FD1C5;
    width: 0%;
    transition: width 0.3s ease;
}

.progress-text07 {
    font-size: 12px;
    color: #4A5568;
}

/* Notification */
.notification-container07 {
    margin-bottom: 25px;
}

.notification07 {
    display: flex;
    align-items: center;
    padding: 15px;
    border-radius: 6px;
    background-color: #EDF2F7;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.notification07.success {
    background-color: #C6F6D5;
    border-left: 4px solid #38A169;
}

.notification07.error {
    background-color: #FED7D7;
    border-left: 4px solid #E53E3E;
}

.notification-icon07 {
    font-size: 18px;
    margin-right: 10px;
}

.notification07.success .notification-icon07 {
    color: #38A169;
}

.notification07.error .notification-icon07 {
    color: #E53E3E;
}

.notification-message07 {
    flex-grow: 1;
    font-size: 14px;
    color: #2D3748;
}

.notification-close07 {
    background: none;
    border: none;
    color: #718096;
    cursor: pointer;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px;
}

.notification-close07:hover {
    color: #4A5568;
}

/* Form Styling */
.profile-form07 {
    color: #1A202C;
}

.form-section07 {
    margin-bottom: 40px;
    position: relative;
}

.section-title07 {
    font-size: 20px;
    font-weight: 600;
    color: #2D3748;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid #E2E8F0;
}

.section-subtitle07 {
    position: absolute;
    top: 3px;
    left: 180px;
    font-size: 14px;
    color: #718096;
    background-color: #EDF2F7;
    padding: 2px 8px;
    border-radius: 4px;
}

.form-row07 {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -10px 20px;
}

.form-group07 {
    flex: 1 1 calc(50% - 20px);
    margin: 0 10px;
    min-width: 250px;
}

.full-width07 {
    flex: 0 0 calc(100% - 20px);
}

.form-label07 {
    display: block;
    margin-bottom: 6px;
    font-weight: 500;
    color: #2D3748;
    font-size: 14px;
}

.required07 {
    color: #E53E3E;
}

.form-input07, .form-select07, .form-textarea07 {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #CBD5E0;
    border-radius: 6px;
    font-size: 14px;
    color: #1A202C;
    transition: all 0.2s;
    background-color: white;
}

.form-input07:focus, .form-select07:focus, .form-textarea07:focus {
    border-color: #3182CE;
    box-shadow: 0 0 0 3px rgba(49, 130, 206, 0.2);
    outline: none;
}

.form-input07::placeholder, .form-textarea07::placeholder {
    color: #A0AEC0;
}

.readonly07 {
    background-color: #EDF2F7;
    cursor: not-allowed;
}

.form-textarea07 {
    min-height: 120px;
    resize: vertical;
}

.input-hint07 {
    font-size: 12px;
    color: #718096;
    margin-top: 5px;
}

.input-error07 {
    font-size: 12px;
    color: #E53E3E;
    margin-top: 5px;
    min-height: 18px;
}

.textarea-counter07 {
    font-size: 12px;
    color: #718096;
    text-align: right;
    margin-top: 5px;
}

/* Password Strength Meter */
.password-strength07 {
    margin-top: 5px;
}

.strength-meter07 {
    display: flex;
    gap: 5px;
    margin-bottom: 5px;
}

.strength-segment07 {
    height: 5px;
    flex: 1;
    background-color: #E2E8F0;
    border-radius: 2px;
    transition: background-color 0.3s ease;
}

.strength-text07 {
    font-size: 12px;
    color: #718096;
}

.weak .strength-segment07:nth-child(1) {
    background-color: #E53E3E;
}

.medium .strength-segment07:nth-child(1),
.medium .strength-segment07:nth-child(2) {
    background-color: #F6AD55;
}

.strong .strength-segment07:nth-child(1),
.strong .strength-segment07:nth-child(2),
.strong .strength-segment07:nth-child(3) {
    background-color: #68D391;
}

.very-strong .strength-segment07 {
    background-color: #38A169;
}

.btn-update-password07 {
    background-color: #4FD1C5;
    color: white;
    border: none;
    border-radius: 6px;
    padding: 10px 15px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: background-color 0.2s;
    margin-top: 10px;
}

.btn-update-password07:hover {
    background-color: #38B2AC;
}

/* Security Notice */
.security-notice07 {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    background-color: #EDF2F7;
    padding: 15px;
    border-radius: 6px;
    margin-bottom: 30px;
}

.security-icon07 {
    color: #3182CE;
    font-size: 16px;
    margin-top: 2px;
}

.security-text07 {
    font-size: 13px;
    color: #4A5568;
    line-height: 1.5;
}

/* Form Actions */
.form-actions07 {
    display: flex;
    justify-content: flex-end;
    gap: 15px;
    margin-top: 20px;
}

.btn-primary07 {
    background-color: #3182CE;
    color: white;
    border: none;
    border-radius: 6px;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: background-color 0.2s;
}

.btn-primary07:hover {
    background-color: #2C5282;
}

.btn-secondary07 {
    background-color: white;
    color: #4A5568;
    border: 1px solid #CBD5E0;
    border-radius: 6px;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-secondary07:hover {
    background-color: #EDF2F7;
    border-color: #A0AEC0;
}

.hidden07 {
    display: none;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .profile-container07 {
        margin: 20px auto;
        padding: 0 15px;
    }
    
    .page-title07 {
        font-size: 24px;
    }
    
    .profile-main07 {
        padding: 20px;
    }
    
    .form-group07 {
        flex: 0 0 calc(100% - 20px);
    }
    
    .form-actions07 {
        flex-direction: column-reverse;
        gap: 10px;
    }
    
    .btn-primary07, .btn-secondary07 {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .profile-container07 {
        margin: 10px;
        border-radius: 0;
    }
    
    .photo-controls07 {
        flex-direction: column;
        width: 100%;
        gap: 10px;
    }
    
    .btn-change-photo07, .btn-remove-photo07 {
        width: 100%;
        justify-content: center;
    }
    
    .section-subtitle07 {
        position: static;
        display: inline-block;
        margin-left: 10px;
        margin-bottom: 15px;
    }
}

/* Sidebar Styles */
.sidebar-06 {
    width: 20%;
    background-color: #2D3748;
    color: #FFFFFF;
    padding: 1.5rem 0;
    position: fixed;
    height: 100%;
    overflow-y: auto;
    top: 0;
    z-index: 100;
    transition: all 0.3s ease;
}

.logo-container-06 {
    padding: 0 1.5rem 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 1.5rem;
}

.logo-container-06 h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #4FD1C5;
}

.sidebar-nav-06 ul {
    list-style: none;
}

.nav-item-06 {
    margin-bottom: 0.25rem;
}

.nav-item-06 a {
    display: flex;
    align-items: center;
    padding: 0.75rem 1.5rem;
    color: #E2E8F0;
    text-decoration: none;
    transition: all 0.2s ease;
}

.nav-item-06 a i {
    margin-right: 0.75rem;
    width: 20px;
    text-align: center;
}

.nav-item-06 a:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.nav-item-06.active-06 a {
    background-color: rgba(79, 209, 197, 0.2);
    color: #4FD1C5;
    border-left: 4px solid #4FD1C5;
}

/* Mobile Navigation */
.mobile-nav-06 {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
    background-color: #2D3748;
    padding: 1rem;
}

.mobile-header-06 {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mobile-header-06 h2 {
    color: #4FD1C5;
    font-size: 1.25rem;
}

.menu-toggle-06 {
    background: none;
    border: none;
    color: #FFFFFF;
    font-size: 1.25rem;
    cursor: pointer;
}

.mobile-nav-menu-06 {
    display: none;
    background-color: #2D3748;
    padding: 1rem 0;
}

.mobile-nav-menu-06.active {
    display: block;
}

.mobile-nav-menu-06 ul {
    list-style: none;
}