/* General Styling for Social Links Editor */
.fse-social-links-body {
     /* Dark background */
    color: #ffffff; /* Light text color */
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

/* Form Container */
.fse-social-links-form {
    
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5); /* Subtle shadow effect */
    max-width: 500px;
    margin: 20px auto; /* Center alignment */
}

/* Headings */
.fse-social-links-form h3 {
    color: #ffffff; /* Heading color */
    margin-bottom: 20px;
}

/* Labels */
.fse-social-links-label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    color: #ffffff; /* Label text color */
}

/* Input Fields */
.fse-social-links-input {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #333;
    border-radius: 4px;
    background-color: #2a2a2a; /* Input field background */
    color: #ffffff; /* Input text color */
    font-size: 16px;
}

.fse-social-links-input:focus {
    border-color: #6200ea; /* Focus border color */
    outline: none;
    box-shadow: 0 0 5px #6200ea; /* Highlighted glow */
}

/* Submit Button */
.fse-social-links-button {
    background-color: #A64D79; /* Button background */
    color: #ffffff; /* Button text color */
    padding: 10px 15px;
    border: none !important;
    border-radius: 100px;
    cursor: pointer;
    font-size: 14px;
    transition: background-color 0.3s, transform 0.2s; /* Smooth transitions */
}

.fse-social-links-button:hover {
    background-color: #A64D79; /* Button hover color */
    transform: scale(1.05); /* Slight zoom effect */
}

/* Response Message */
.fse-response-message {
    margin-top: 15px;
    font-weight: bold;
    font-size: 14px;
    color: #ffffff; /* Default response text color */
}
