/* Modern Button styles */
.icon-button {
    position: fixed;
    cursor: pointer;
    display: block;
    width: 60px !important;
    height: 60px;
    bottom: 24px;
    left: 24px;
    background-color: white;
    border-radius: 50%;
    text-align: center;
    z-index: 9000;
    padding: 0;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.icon-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 28px rgba(0, 0, 0, 0.12);
}

/* Image styles */
.icon-button img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    display: block;
}