/*
 Theme Name:   Neve Child Theme for Marvel Moulds
 Theme URI:    https://wp2.marvelmoulds.com
 Description:  A child theme for Neve to customize Marvel Moulds site.
 Author:       Marvel Moulds
 Author URI:   https://wp2.marvelmoulds.com
 Template:     neve
 Version:      1.0.0
 License:      GNU General Public License v2 or later
 License URI:  http://www.gnu.org/licenses/gpl-2.0.html
 Text Domain:  neve-child
*/
#hardcoded-social-icons {
    /* Use position: fixed/absolute and z-index to place it over the bottom bar */
    position: absolute; /* or fixed, depending on your desired scroll behavior */
    bottom: 10px; /* Adjust this value to match the bottom bar position */
    right: 30px; /* Adjust spacing from the right edge */
    z-index: 9999; /* Ensure it stays on top of other elements */
    
    display: flex;
    gap: 15px; /* Spacing between icons */
}

#hardcoded-social-icons a {
    color: #ffffff; /* White icon color for the black footer bar */
    font-size: 1.2rem;
    text-decoration: none;
    transition: color 0.3s ease;
}

#hardcoded-social-icons a:hover {
    color: #0084ff; /* Hover color */
}