/**
 * Social Icons Frontend Styles
 */

/* Center align the container */
.iscents-social-icons-footer {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top:10px;
}

/* Style for the links (a tags) */
.iscents-social-icons-footer a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    background-color: white;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
}

/* Style for the icons (i tags) */
.iscents-social-icons-footer i {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    font-size: 16px;
    color: #dc9d2f;
}

/* Optional hover effect */
.iscents-social-icons-footer a:hover {
    transform: scale(1.1);
    background-color: #f0f0f0;
}