.input_zone {
    max-width: 540px;
}

.instagram__image {
    transition: all 0.5s ease-in-out;
    background-color: white;
    max-width: calc(100% / 6 - 1rem);
    margin: 0.5rem;
    width: 100%;
    padding-top: 15%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

@media (max-width: 1024px) {
    .input_zone {
        max-width: initial;
    }
}

.cv-spinner {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.spinner {
    width: 40px;
    height: 40px;
    border: 4px #ddd solid;
    border-top: 4px #2e93e6 solid;
    border-radius: 50%;
    animation: sp-anime 0.8s infinite linear;
}

.spinner-overlay {
    position: fixed;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    z-index: -1;
    background: rgba(0, 0, 0, 0.3);
}

@keyframes sp-anime {
    100% {
        transform: rotate(360deg);
    }
}

.disabled {
    opacity: 0.7;
    pointer-events: none;
}

.manual-tool-message {
    z-index: -1;
    opacity: 0;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 2rem;
    background-color: #ffe1e1;
}

.label {
    padding: 0.25rem;
    border-radius: 0.25rem;
    --tw-bg-opacity: 1;
    background-color: rgba(229, 231, 235, var(--tw-bg-opacity));
}
