/* Social Media Checkout Fields CSS */
.social-media-selection-section {
    margin-bottom: 30px;
}

.social-media-options {
    max-width: 600px;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #f8f9fa;
    color: #0d6efd;
    transition: all 0.3s ease;
    border: 1px solid #dee2e6;
}

.social-icon:hover {
    background-color: #0d6efd;
    color: #ffffff;
}

.social-icon-sm {
    width: 30px;
    height: 30px;
    font-size: 16px;
}

.social-icon-md {
    width: 40px;
    height: 40px;
    font-size: 20px;
}

.social-icon-lg {
    width: 50px;
    height: 50px;
    font-size: 24px;
}

.social-icon svg {
    width: 20px;
    height: 20px;
}

.social-icon-lg svg {
    width: 28px;
    height: 28px;
}

.social-icon-sm svg {
    width: 16px;
    height: 16px;
}

.form-check-label i,
.form-check-label svg,
.form-label i,
.form-label svg {
    margin-right: 5px;
}

/* Fix alignment for checkboxes */
.social-media-options .form-check-input {
    margin-top: 0.25rem;
}

.social-media-selection-container {
    border: 1px solid #dee2e6;
    border-radius: 0.375rem;
    padding: 15px;
    margin-bottom: 20px;
}

/* Message boxes */
.social-media-messages {
    margin-top: 15px;
}

/* Improve checkbox styling */
.social-media-options .form-check {
    padding-left: 1.8rem;
}

.social-media-options .form-check-input {
    margin-left: -1.8rem;
}

/* Card header styling */
#socialMediaHeader button {
    color: #0d6efd;
    padding: 0.5rem 0;
}

#socialMediaHeader button:hover {
    color: #0a58ca;
}

#socialMediaHeader button:focus {
    box-shadow: none;
}

/* Fix for SVG icons in form labels */
.form-check-label svg {
    vertical-align: -0.125em;
}

/* Adjust spacing for better mobile experience */
@media (max-width: 576px) {
    .social-media-options {
        padding-left: 0.5rem;
    }
    
    .social-media-options .form-check {
        margin-bottom: 0.75rem;
    }
}