/* Isolation ID */
#cv-style-tool {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: #eef2f3;
    padding: 20px;
    width: 100%;
    box-sizing: border-box;
}

#cv-style-tool * {
    box-sizing: border-box;
}

/* Main Container */
#cv-style-tool .cv-container {
    max-width: 1000px;
    margin: 0 auto;
    background: #fff;
    padding: 40px;
    border-radius: 8px;
    border-top: 5px solid #2c3e50;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

/* Titles */
#cv-style-tool h2 {
    text-align: center;
    color: #2c3e50;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 30px;
    font-size: 24px;
    border-bottom: none;
}

#cv-style-tool .cv-section-title {
    border-bottom: 2px solid #cbcbcb;
    padding-bottom: 10px;
    color: #444;
    margin-top: 40px;
    font-size: 18px;
    text-transform: uppercase;
		font-weight:500;
}

/* Grid System */
#cv-style-tool .cv-row {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
}
#cv-style-tool .cv-col {
    flex: 1;
}

/* Form Elements */
#cv-style-tool label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 13px;
    color: #000;
}

#cv-style-tool input[type="text"], 
#cv-style-tool input[type="email"], 
#cv-style-tool textarea, 
#cv-style-tool select {
    width: 100%;
    padding: 12px;
    border: 1px solid #838383 !important;
    border-radius: 5px;
    font-size: 15px;
    background: #e3e3e3;
    color: #333;
    transition: 0.3s;
}

#cv-style-tool input:focus, 
#cv-style-tool textarea:focus {
    border-color: #3498db !important;
    outline: none;
}

/* Add More Buttons */
#cv-style-tool .cv-btn-add {
    background: #3498db;
    color: white;
    padding: 8px 15px;
    border: none;
    cursor: pointer;
    border-radius: 4px;
    font-size: 13px;
    margin-top: 10px;
    display: inline-block;
}
#cv-style-tool .cv-btn-add:hover {
    background: #2980b9;
}

/* Remove Button */
#cv-style-tool .remove-btn {
    color: #e74c3c;
    cursor: pointer;
    font-size: 18px;
    font-weight: bold;
    margin-left: 10px;
    display: flex;
    align-items: center;
}

/* Submit Button */
#cv-style-tool .cv-btn-submit {
    background: #27ae60;
    color: white;
    border: none;
    padding: 15px;
    width: 100%;
    font-size: 18px;
    cursor: pointer;
    border-radius: 6px;
    margin-top: 40px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: 0.3s;
}
#cv-style-tool .cv-btn-submit:hover {
    background: #219150;
    transform: translateY(-2px);
}

/* Photo Upload Box */
#cv-style-tool .cv-photo-box {
    background: #e3f2fd;
    border: 2px dashed #2196F3;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 30px;
    text-align: center;
}
#cv-style-tool .photo-label {
    color: #1976D2;
    font-weight: bold;
    display: block;
    margin-bottom: 10px;
    font-size: 16px;
}
#cv-style-tool .photo-hint {
    margin-top: 5px;
    font-size: 12px;
    color: #666;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    #cv-style-tool .cv-row {
        flex-direction: column;
        gap: 10px;
    }
    #cv-style-tool .cv-container {
        padding: 20px;
    }
}