.error-text{
    color: color-mix(in oklab, var(--destructive) 100%, transparent);
}

.sm\:w-48 {
    @media (width >= 40rem) {
        width: calc(var(--spacing) * 48);
    }
}

.upload-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.document_btn {
    width: 100%;
    height: 300px;
    background-color: #0c83e7;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    border-radius: 8px;
    transition: background-color 0.3s, border 0.3s;
    border: 2px dashed transparent;
    text-align: center;
}

.document_btn:hover {
    background-color: #0a6fc0;
}

.document_btn.dragover {
    background-color: #0a6fc0;
    border-color: #fff;
}

.document_btn input {
    display: none;
}

.file-name {
    font-size: 14px;
    color: #333;
    text-align: center;
}
