/* =========================================================
   Отложенная сделка из первого раздела
   ========================================================= */

.postpone-warning-box {
    background: #fff7f7;
    border: 1px solid #fecaca;
    border-left: 5px solid #dc2626;
    color: #7f1d1d;
    border-radius: 12px;
    padding: 12px;
    margin-bottom: 14px;
    line-height: 1.45;
}

.btn-postpone-deal {
    background: #ffffff !important;
    color: #dc2626 !important;
    border: 1px solid #fecaca !important;
    min-width: 68px !important;
    height: 30px !important;
    min-height: 30px !important;
    padding: 5px 8px !important;
    font-size: 12px !important;
    border-radius: 7px !important;
}

.btn-postpone-deal:hover {
    background: #fee2e2 !important;
    color: #991b1b !important;
    border-color: #dc2626 !important;
}

/* Красная подсветка отложенной сделки во втором разделе */
.postponed-calculation-row td {
    background: #fff5f5 !important;
    border-bottom-color: #fecaca !important;
}

.postponed-calculation-row {
    outline: 2px solid #fecaca;
    outline-offset: -2px;
}

.postponed-calculation-row td:first-child {
    border-left: 5px solid #dc2626 !important;
}

.postponed-calculation-row td[data-label="Статус"],
.postponed-calculation-row td:nth-child(5) {
    color: #991b1b !important;
    font-weight: 900 !important;
}

/* Всплывающее окно администратора */
.postponed-deal-popup {
    position: fixed;
    right: 18px;
    top: 18px;
    width: 340px;
    max-width: calc(100vw - 36px);
    z-index: 99999;

    background: #ffffff;
    border: 2px solid #dc2626;
    border-left: 6px solid #dc2626;
    border-radius: 14px;
    box-shadow: 0 18px 48px rgba(127, 29, 29, 0.24);
    padding: 12px;
    display: none;
}

.postponed-deal-popup-head {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    align-items: center;
    color: #991b1b;
    padding-bottom: 10px;
    border-bottom: 1px solid #fecaca;
    margin-bottom: 10px;
}

.postponed-deal-popup-head button {
    width: 28px !important;
    min-width: 28px !important;
    height: 28px !important;
    min-height: 28px !important;
    padding: 0 !important;
    background: #ffffff !important;
    color: #991b1b !important;
    border: 1px solid #fecaca !important;
    border-radius: 8px !important;
}

.postponed-deal-popup-body {
    display: grid;
    gap: 6px;
    font-size: 13px;
    color: #111827;
}

.postponed-deal-popup-reason {
    margin-top: 6px;
    background: #fff7f7;
    border: 1px solid #fecaca;
    color: #7f1d1d;
    border-radius: 10px;
    padding: 8px;
    line-height: 1.35;
}

@media (max-width: 950px) {
    .postponed-deal-popup {
        right: 10px;
        top: 10px;
        width: 320px;
        max-width: calc(100vw - 20px);
    }
}
