@charset "utf-8";
/* Floating Social Media Panel */

#socialMediaPanel {
    position: fixed;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

#socialMediaPanel a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background-color: #3CAF2A;
    border-radius: 50%;
	border:2px solid #FFF;
    transition: all 0.3s ease;
    text-decoration: none;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

#socialMediaPanel a:hover {
    background-color: #008C00;
    transform: scale(1.1);
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.15);
}

#socialMediaPanel a svg,
#socialMediaPanel a img {
    width: 24px;
    height: 24px;
}
#socialMediaPanel a svg {
    fill: #FFF;
}
#socialMediaPanel a {
    color: #FFF;
}


@media only screen and (max-width: 1200px) {
    #socialMediaPanel {
        left: 12px;
        gap: 12px;
    }
    
    #socialMediaPanel a {
        width: 45px;
        height: 45px;
    }
    
    #socialMediaPanel a svg,
	#socialMediaPanel a img {
        width: 22px;
        height: 22px;
    }
}


/* Tablet and smaller */
@media only screen and (max-width: 1000px) {
    #socialMediaPanel {
        left: 10px;
        gap: 10px;
    }
    
    #socialMediaPanel a {
        width: 40px;
        height: 40px;
    }
    
    #socialMediaPanel a svg,
	#socialMediaPanel a img {
        width: 20px;
        height: 20px;
    }
}
/* Mobile landscape and smaller */
@media only screen and (max-width: 768px) {
    #socialMediaPanel {
        left: 5px;
        gap: 8px;
    }
    
    #socialMediaPanel a {
        width: 34px;
        height: 34px;
    }
    
    #socialMediaPanel a svg,
	#socialMediaPanel a img {
        width: 16px;
        height: 16px;
    }
}

/* Very small screens - move to bottom */
@media only screen and (max-width: 600px) {
    #socialMediaPanel {
        position: fixed;
        left: 50%;
        top: auto;
        bottom: 10px;
        transform: translateX(-50%);
        flex-direction: row;
        gap: 15px;
    }
    
    #socialMediaPanel a {
        width: 40px;
        height: 40px;
    }
    
    #socialMediaPanel a svg,
	#socialMediaPanel a img {
        width: 20px;
        height: 20px;
    }
}
@media only screen and (max-width: 450px) {
    #socialMediaPanel {
        gap: 8px;
    }
    
    #socialMediaPanel a {
        width: 34px;
        height: 34px;
    }
    
    #socialMediaPanel a svg,
	#socialMediaPanel a img {
        width: 16px;
        height: 16px;
    }
}