.corner-button {
    position: fixed;
    bottom: 30px;
    z-index: 1000;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid #ada387;
    background-color: #e6d9bd;
    color: #ada387;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    cursor: pointer;
    box-shadow: 0px 2px 5px #ada387;
    transition: background-color 0.2s ease;
}

.corner-button:hover {
    background-color: #eee1c4;
}
