/* File: assets/css/profile_edit.css */
        :root {
            --primary-color: #2c3e50;
            --secondary-color: #e74c3c;
            --light-color: #f8f9fa;
            --dark-color: #343a40;
        }
        
        body {
            font-family: 'SolaimanLipi', 'Hind Siliguri', sans-serif;
            background-color: #f5f7fb;
            color: #333;
            line-height: 1.6;
        }
        
        .profile-edit-header {
            background: linear-gradient(to right, var(--primary-color), #4a6582);
            color: white;
            padding: 40px 0 40px;
            position: relative;
            margin-bottom: 50px;
        }
        
        .profile-img-container {
            position: relative;
            width: 180px;
            height: 180px;
            margin: 0 auto;
        }
        
        .profile-img {
            width: 100%;
            height: 100%;
            border-radius: 50%;
            border: 5px solid white;
            object-fit: cover;
            position: absolute;
            bottom: -50px;
            left: 50%;
            transform: translateX(-50%);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }
        
        .profile-img-edit {
            position: absolute;
            bottom: -70px;
            right: 30px;
            width: 45px;
            height: 45px;
            border-radius: 50%;
            background: var(--secondary-color);
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            z-index: 10;
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
        }
        
        .profile-edit-section {
            background: white;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
            padding: 30px;
            margin-bottom: 30px;
        }
        
        .section-title {
            position: relative;
            padding-bottom: 15px;
            margin-bottom: 25px;
            border-bottom: 2px solid #f0f0f0;
        }
        
        .section-title::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 80px;
            height: 2px;
            background: var(--secondary-color);
        }
        
        .form-label {
            font-weight: 600;
            color: var(--primary-color);
            margin-bottom: 8px;
        }
        
        .form-control, .form-select {
            padding: 12px 15px;
            border-radius: 8px;
            border: 1px solid #ddd;
            margin-bottom: 20px;
            transition: all 0.3s;
        }
        
        .form-control:focus, .form-select:focus {
            border-color: var(--primary-color);
            box-shadow: 0 0 0 0.2rem rgba(44, 62, 80, 0.1);
        }
        
        .btn-primary {
            background: var(--primary-color);
            border: none;
            padding: 12px 25px;
            border-radius: 8px;
            font-weight: 600;
            transition: all 0.3s;
        }
        
        .btn-primary:hover {
            background: #1a2530;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }
        
        .btn-secondary {
            background: var(--secondary-color);
            border: none;
            padding: 12px 25px;
            border-radius: 8px;
            font-weight: 600;
            transition: all 0.3s;
        }
        
        .btn-secondary:hover {
            background: #c0392b;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }
        
        .social-link {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 45px;
            height: 45px;
            border-radius: 50%;
            background: #f0f7ff;
            color: var(--primary-color);
            font-size: 18px;
            margin-right: 10px;
            transition: all 0.3s;
        }
        
        .social-link:hover {
            background: var(--primary-color);
            color: white;
            transform: translateY(-3px);
        }
        
        .skill-tag {
            display: inline-block;
            background: #e1f0ff;
            color: var(--primary-color);
            padding: 8px 15px;
            border-radius: 30px;
            margin: 5px;
            font-size: 14px;
            position: relative;
        }
        
        .skill-tag .remove-skill {
            margin-left: 8px;
            cursor: pointer;
            color: var(--secondary-color);
        }
        
        .add-skill-input {
            display: inline-flex;
            width: auto;
            min-width: 150px;
        }
        
        .education-item, .career-item {
            background: #f9f9f9;
            border-radius: 10px;
            padding: 20px;
            margin-bottom: 20px;
            position: relative;
            border: 1px solid #eee;
            transition: all 0.3s;
        }
        
        .education-item:hover {
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }
        
        .remove-item {
            position: absolute;
            top: 15px;
            right: 15px;
            color: var(--secondary-color);
            cursor: pointer;
            font-size: 1.2rem;
            transition: all 0.3s;
        }
        
        .remove-item:hover {
            transform: scale(1.2);
        }
        
        .privacy-option {
            display: flex;
            align-items: center;
            padding: 12px 15px;
            background: #f9f9f9;
            border-radius: 8px;
            margin-bottom: 15px;
            cursor: pointer;
            transition: all 0.3s;
        }
        
        .privacy-option:hover {
            background: #eef7ff;
        }
        
        .privacy-option input {
            margin-right: 10px;
        }
        
        .add-education-btn-container {
            margin-top: 20px;
            text-align: center;
        }
        
        @media (max-width: 768px) {
            .profile-edit-header {
                padding: 50px 0 80px;
                margin-bottom: 60px;
            }
            
            .profile-img-container {
                width: 140px;
                height: 140px;
            }
            
            .profile-img {
                bottom: -70px;
            }
            
            .profile-img-edit {
                bottom: -50px;
                right: 20px;
            }
        }