
/* MODAL DE CANCELAMENTO */
.buttons-orders-actions {
    display: flex;
    flex-direction: row;
    gap: 10px;
}

.order-cancel-modal-overlay {
    text-align: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.order-cancel-modal {
    background: #fff;
    border-radius: 12px;
    padding: 24px;
    max-width: 400px;
    width: 90%;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.order-cancel-modal__header {
    margin: 0 0 16px 0;
}

.order-cancel-modal__title {
    margin: 0;
    color: #333;
    font-size: 1.25rem;
}

.order-cancel-modal__body {
    margin-bottom: 24px;
}

.order-cancel-modal__text {
    font-size: 1.2rem;
    margin: 0 0 8px 0;
    color: #666;
}

.order-cancel-modal__warning {
    color: #e40e18;
    font-size: 1.2rem;
    margin: 0;
}

.order-cancel-modal__footer {
    display: flex;
    gap: 12px;
    justify-content: flex-end;
}

.order-cancel-modal__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 500;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.2s;
    border: 1px solid transparent;
    flex: 1;
}

    .order-cancel-modal__btn:disabled {
        opacity: 0.6;
        cursor: not-allowed;
    }

    .order-cancel-modal__btn:hover:not(:disabled) {
        transform: translateY(-2px);
    }

.order-cancel-modal__btn--secondary {
    background-color: transparent;
    color: rgb(26, 26, 26);
    width: 50%;
    border-color: rgba(150, 150, 150, 0.76);
}

.order-cancel-modal__btn--danger {
    background: #e40e18;
    color: #fff;
}

@media (max-width: 640px) {
    .order-cancel-modal__btn {
        font-size: 0.8rem;
    }
}
