.social-login-container {
    margin: 20px 0;
    padding: 20px 0;
    border-top: 1px solid #ddd;
}

.social-login-separator {
    text-align: center;
    margin: 15px 0;
    position: relative;
    color: #666;
    font-size: 14px;
}

.social-login-separator span {
    background: #fff;
    padding: 0 10px;
    position: relative;
    z-index: 1;
}

.social-login-separator::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: #ddd;
}

.social-login-buttons {
    display: flex;
    gap: 10px;
    flex-direction: column;
    flex-wrap: wrap;
}

.social-login-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 20px;
    border: 1px solid #ddd;
    border-radius: 4px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.3s ease;
    color: #fff;
}

.social-login-button:hover {
    opacity: 0.9;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.social-login-button:focus {
    outline: 2px solid #0073aa;
    outline-offset: 2px;
}

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

.social-login-button.linkedin {
    background-color: #0077b5;
    border-color: #0077b5;
}

.social-login-button.linkedin:hover {
    background-color: #006399;
    border-color: #006399;
}

.social-login-button.google {
    background-color: #fff;
    border-color: #dadce0;
    color: #3c4043;
}

.social-login-button.google:hover {
    background-color: #f8f9fa;
    border-color: #dadce0;
}

/* Responsive */
@media screen and (min-width: 768px) {
    /* .social-login-buttons {
        flex-direction: row;
    } */
    
    .social-login-button {
        flex: 1;
    }
}

/* Shortcode specific styles */
.social-login-shortcode-wrapper {
    max-width: 100%;
    margin: 0 auto;
    padding: 30px;
    margin-bottom: 30px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.social-login-title {
    text-align: center;
    margin: 0 0 25px 0;
    font-size: 24px;
    color: #333;
    font-weight: 600;
}

.social-login-buttons.vertical {
    flex-direction: column;
}
/* 
.social-login-buttons.horizontal {
    flex-direction: row;
} */

.social-login-logged-in {
    text-align: center;
    padding: 20px;
    background: #f0f0f1;
    border-radius: 8px;
}

.social-login-logged-in p {
    margin: 0 0 15px 0;
    font-size: 16px;
    color: #333;
}

.social-login-logout {
    display: inline-block;
    padding: 10px 20px;
    background: #dc3545;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 500;
    transition: background 0.3s ease;
}

.social-login-logout:hover {
    background: #c82333;
    color: #fff;
}

/* Remove separator for shortcode */
.social-login-shortcode-wrapper .social-login-separator {
    display: none;
}

.social-login-shortcode-wrapper .social-login-container {
    border-top: none;
    padding: 0;
    margin: 0;
}