
/* Edit Profile Styles */
.edit-profile-container,
.settings-container,
.edit-job-container,
.edit-seeker-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 0;
}

.edit-profile-header,
.settings-header,
.edit-job-header,
.edit-seeker-header {
    text-align: center;
    margin-bottom: 3rem;
}

.edit-profile-header h1,
.settings-header h1,
.edit-job-header h1,
.edit-seeker-header h1 {
    color: #333;
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.edit-profile-header p,
.settings-header p,
.edit-job-header p,
.edit-seeker-header p {
    color: #666;
    font-size: 1.1rem;
}

.edit-profile-content,
.settings-content,
.edit-job-content,
.edit-seeker-content {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.profile-image-section {
    text-align: center;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #e9ecef;
}

.profile-image-upload {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.current-image {
    position: relative;
    display: inline-block;
}

.current-image img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--primaryColor);
}

.upload-controls {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}
.upload-controls .btn {
    color: var(--primaryColor);
}
.form-section,
.settings-section {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #e9ecef;
}

.form-section:last-child,
.settings-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.form-section h3,
.settings-section h3 {
    color: #333;
    margin-bottom: 2rem;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #333;
}

.form-label i {
    color: var(--primaryColor);
    width: 16px;
}

.form-control {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;

}

.form-control:focus {
    outline: none;
    border-color: var(--primaryColor);
    box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.1);
}

.phone-input {
    display: flex;
    gap: 0.5rem;
}

.country-code {
    flex: 0 0 150px;
}

.phone-number {
    flex: 1;
}

.verification-status {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
/*socila links */
.social-links {
    display: flex;
    flex-direction: row;
    gap: .5rem!important;
    justify-content: center;
}
.social-links a {
    color: #FFF;
    text-decoration: none;
    padding: .5rem .3rem;
    border-radius: 0.3rem;
    text-align: center;
}
.social-links a i {
    display: block;
}
.social-link.facebook {
    background: #3b5998;
}
.social-link.twitter {
    background: #1da1f2;
}
.social-link.tiktok {
    background: #000000;
}
.social-link.instagram {
    background: linear-gradient(45deg, #405de6, #5851db, #833ab4, #c13584, #e1306c, #fd1d1d);
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.badge-success {
    background: #e8f5e8;
    color: #2e7d32;
}

.badge-secondary {
    background: #f8f9fa;
    color: #6c757d;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    font-size: 0.95rem;
    color: #333;
}

.checkbox-label input[type="checkbox"] {
    display: none;
}

.checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid #ddd;
    border-radius: 4px;
    position: relative;
    transition: all 0.3s ease;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
    background: var(--primaryColor);
    border-color: var(--primaryColor);
}

.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 12px;
}

.form-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #e9ecef;
}
.action-item.danger {
    margin-top: 40px;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    padding: 10px;
    border: #dc3545 1px solid;
    background: #fff5f5;
    border-radius: 8px;
}


@media (max-width: 480px) {
  
    .upload-area {
        width: 100px;
        height: 100px;
    }
    
    .phone-input {
        flex-direction: column;
    }
    
    .country-code {
        flex: none;
    }
}
