.zoom-button {
    transition: transform 0.5s;
}

.zoom-button:hover {
    transform: scale(1.8);
}

.zoom-button i {
    font-size: 25px;
}

.remove-btn {
    width: 40px; /* Adjust the width as needed */

    height: 30px; /* Make the button a square */
}

.spinner-overlay {
    position: fixed;
    top: -40px;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(0.9px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1050;
}

.spinner-container {
    position: relative;
}

.spinner-background,
.spinner-foreground {
    width: 5rem;
    height: 5rem;
    border-radius: 50%;
    border-top: 0.5rem solid transparent;
    border-bottom: 0.5rem solid transparent;
}

.spinner-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-top-color: rgba(255, 255, 255, 0.2);
    border-bottom-color: rgba(255, 255, 255, 0.2);
}

.spinner-foreground {
    position: absolute;
    top: 0;
    /* background-image: url('/favicon.png'); */
    left: 0;
    background-repeat: no-repeat;
    /* border-top-color: #696cff; */
    border-top-color: #f35c29;
    background-size: contain;
    /* border-bottom-color: #696cff; */
    border-bottom-color: #f35c29;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.zoom {
    transition: transform 0.2s;
}

.zoom:hover {
    cursor: pointer;
    transform: scale(4);
}

.vertical-text {
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    white-space: nowrap;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 30px ;
}
.vertical-text-form {
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    white-space: nowrap;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 40px ;
}
