/*
Theme Name: makosh
*/
.wpcf7-not-valid{
	border:1px solid red!important;
}
.wpcf7-not-valid-tip, .wpcf7-validation-errors{
	display:none!important;
}
.errortext {
	text-align: center;
	background-color: #ea9090;
	color: #fff;
	width: 100%;
	padding: 20px 0;
	display: none;
}
.errortext.active{
	display: block;
}
.errortext a {
	color: #fff348;
}
.logic-menu ul li a.active, .logic-menu ul li.active a {
	font-weight: 700;
}
ol {
	list-style: auto;
}
ol br{
	display: none;
}
.single-change ol {
	padding-left: 30px;
}
.hidden{
	display: none;
}
.table-item {
    flex: 1 1 0;
}


/* ============================================
   ORDERS TABLE - Wrapper зі скролом
   ============================================ */

.orders-table-wrapper {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.orders-table {
    min-width: 1400px; /* Мінімальна ширина таблиці */
    width: 100%;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

/* Шапка таблиці */
.orders-table__header {
    display: grid;
    grid-template-columns: 
        70px      /* # */
        110px     /* Статус */
        110px     /* Склад */
        110px     /* Доставка */
        130px     /* Логіст */
        130px     /* Рахунок */
        110px     /* Дата створення */
        150px     /* Дата редагування */
        minmax(200px, 1fr)  /* Господарство - гнучка */
        130px;    /* Менеджер */
    gap: 8px;
    padding: 14px 16px;
    background: #f8f9fa;
    border-bottom: 2px solid #e9ecef;
    font-weight: 600;
    font-size: 12px;
    color: #495057;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.orders-table__header > div {
    
}

/* Тіло таблиці */
.orders-table__body {
    background: #fff;
}

/* Рядок таблиці */
.orders-table__row {
    display: grid;
    grid-template-columns: 
        70px      /* # */
        110px     /* Статус */
        110px     /* Склад */
        110px     /* Доставка */
        130px     /* Логіст */
        130px     /* Рахунок */
        110px     /* Дата створення */
        150px     /* Дата редагування */
        minmax(200px, 1fr)  /* Господарство */
        130px;    /* Менеджер */
    gap: 8px;
    padding: 14px 16px;
    border-bottom: 1px solid #e9ecef;
    transition: background 0.2s ease;
    text-decoration: none;
    color: inherit;
}

.orders-table__row:hover {
    background: #ece4a3;
}

.orders-table__row.crm-change {
    background: #fff3cd;
    border-left: 4px solid #ffc107;
}

.orders-table__row.crm-change:hover {
    background: #ffe69c;
}

/* Колонки */
.orders-table__row > div {
    display: flex;
    flex-direction: column;
    justify-content: center;
    font-size: 13px;
    line-height: 1.4;
    overflow: hidden;
}

/* Mobile label */
.mobile-label {
    display: none;
}

/* Значення */
.value {
    color: #212529;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* # колонка */
.col-id .value {
    font-weight: 700;
    color: #ff5722;
    font-size: 14px;
}

/* Статус бейдж */
.status-badge {
    display: inline-block;
    padding: 5px 10px;
    border-radius: 20px;
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    text-align: center;
    white-space: nowrap;
}

/* Дата редагування */
.edit-date {
    font-weight: 600;
    color: #212529;
    margin-bottom: 3px;
    font-size: 13px;
}

.edit-status,
.edit-comment {
    font-size: 11px;
    color: #6c757d;
    margin-bottom: 2px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.crm-warning {
    color: #856404;
    font-size: 11px;
    font-weight: 600;
}

/* ============================================
   SCROLL HINT (Підказка про скрол)
   ============================================ */

.orders-table-wrapper::after {
    content: '';
    position: sticky;
    right: 0;
    top: 0;
    width: 40px;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0,0,0,0.05));
    pointer-events: none;
    float: right;
    margin-left: -40px;
}

/* ============================================
   МОБІЛЬНА ВЕРСІЯ
   ============================================ */

@media (max-width: 768px) {
    .orders-table {
        min-width: 100%;
    }
    
    .orders-table__header {
        display: none;
    }

    .orders-table__row {
        display: block;
        padding: 16px;
        border-left: 4px solid #007bff;
    }

    .orders-table__row.crm-change {
        border-left-color: #ffc107;
    }

    .orders-table__row > div {
        display: block;
        margin-bottom: 12px;
        padding-bottom: 12px;
        border-bottom: 1px solid #f0f0f0;
    }

    .orders-table__row > div:last-child {
        margin-bottom: 0;
        padding-bottom: 0;
        border-bottom: none;
    }

    .mobile-label {
        display: block;
        font-size: 11px;
        color: #6c757d;
        font-weight: 600;
        text-transform: uppercase;
        margin-bottom: 4px;
    }

    .col-id .value {
        font-size: 18px;
    }

    .edit-status,
    .edit-comment {
        white-space: normal;
    }
}