/* Social Icons Styling */
.social-media-icons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 10px;
    justify-content: center;
}

.social-icon-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.9);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.social-icon-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.social-icon {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

/* Social field in edit profile */
.social-field {
    display: flex;
    align-items: center;
    border: 1px solid #e5e5e5;
    padding: 15px;
    border-radius: 8px;
    background-color: #f9f9f9;
}

.social-icon-preview {
    width: 24px;
    height: 24px;
    margin-right: 10px;
    vertical-align: middle;
}

.display-label {
    display: flex;
    align-items: center;
    cursor: pointer;
}

.display-label input {
    margin-right: 5px;
}

.custom-social-container {
    border: 1px solid #e5e5e5;
    padding: 15px;
    border-radius: 8px;
    background-color: #f9f9f9;
}

.custom-social-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.custom-social-header h6 {
    font-weight: 600;
    margin: 0;
}