/* CSS généré automatiquement par BDCE Social Connect - Design moderne et aéré */

.bdce-social-buttons {
    margin: 30px auto;
    padding: 25px;
    background: #f0f8ff;
    border: 2px solid #007cba;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    max-width: 600px;
}

.bdce-social-title {
    margin-bottom: 25px;
    font-size: 18px;
    font-weight: 600;
    color: #007cba;
    letter-spacing: 0.5px;
}

.bdce-social-buttons-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    justify-items: center;
}

.bdce-social-button {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 12px;
    width: 100%;
    max-width: 200px;
    padding: 15px 20px;
    background: white;
    color: #333;
    text-decoration: none;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.bdce-social-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
    text-decoration: none;
    color: #333;
    border-color: #007cba;
}

.bdce-social-icon-colored {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .bdce-social-buttons-list {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    .bdce-social-button {
        max-width: 100%;
        justify-content: center;
    }
}

