/* social-widget.css */
.aidgaza-social-widget-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.aidgaza-social-widget-container .widget-title {
    width: 100%;
    text-align: center;
    margin-bottom: 15px !important;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}

.aidgaza-social-icons-wrapper {
    display: flex;
    justify-content: left;
    width: 100%;
    padding: 5px 0 15px;
}

.wpzoom-social-icons__list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 5px;
    margin: 0 !important;
    padding: 0 !important;
    list-style: none !important;
    max-width: 100%;
}

.wpzoom-social-icons__list li {
    margin: 0 !important;
    padding: 0 !important;
    flex: 0 0 auto;
}

.wpzoom-social-icons__list a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background-color: #f8f9fa;
    color: #555;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    border: 1px solid #eee;
}

.wpzoom-social-icons__list a:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 12px rgba(0,0,0,0.1);
    background-color: #fff;
    border-color: #ddd;
}

/* Platform-specific hover colors */
.wpzoom-social_icons-widget[data-id="711"] .wpzoom-social_icons__list a[href*="facebook.com"]:hover {
    background-color: #1877f2 !important;
    color: white !important;
    border-color: #1877f2;
}

.wpzoom-social_icons-widget[data-id="711"] .wpzoom-social_icons__list a[href*="twitter.com"]:hover {
    background-color: #1da1f2 !important;
    color: white !important;
    border-color: #1da1f2;
}

.wpzoom-social_icons-widget[data-id="711"] .wpzoom-social_icons__list a[href*="instagram.com"]:hover {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%) !important;
    color: white !important;
    border-color: #d6249f;
}

.wpzoom-social_icons-widget[data-id="711"] .wpzoom-social_icons__list a[href*="youtube.com"]:hover {
    background-color: #ff0000 !important;
    color: white !important;
    border-color: #ff0000;
}

.wpzoom-social_icons-widget[data-id="711"] .wpzoom-social_icons__list a[href*="linkedin.com"]:hover {
    background-color: #0a66c2 !important;
    color: white !important;
    border-color: #0a66c2;
}

/* Mobile responsiveness */
@media (max-width: 480px) {
    .wpzoom-social-icons__list {
        gap: 8px;
    }
    
    .wpzoom-social-icons__list a {
        width: 38px;
        height: 38px;
    }
}