#google-floating {
    position: fixed;
    bottom: 5%;
    left: 5%; /* Changed from right to left */
    transform-origin: center;
    z-index: 50;
}

.google-floating-content {
    position: relative;
    display: inline-block;
}

#google-floating a {
    background: #fff;
    display: inline-block;
    border: 2px solid #F9BB08;
    border-radius: 10px 10px 10px 10px;
    padding: 5px;
    transition: ease 0.5s !important;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

#google-floating a:hover {
    transform: scale(1.1);
    transition: ease 0.5s !important;
}

.close-google-reviews {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 24px;
    height: 24px;
    background-color: #f44336;
    color: white;
    border-radius: 50%;
    text-align: center;
    line-height: 24px;
    font-size: 16px;
    cursor: pointer;
    z-index: 51;
    box-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.close-google-reviews:hover {
    background-color: #d32f2f;
}
