.request-card {
    background: #ffffff; /* более яркий белый фон */
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.15); /* более выраженная тень */
    border: 1px solid #e0e0e0; /* легкая граница для контраста */
}

.request-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.request-info {
    font-size: 0.95rem;
    color: #111; /* чуть темнее для контраста */
}

.request-actions button {
    background-color: #dc3545;
    color: #fff;
    border: none;
    padding: 6px 12px;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.3s, box-shadow 0.3s;
}

.request-actions button:hover {
    background-color: #b02a37;
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}

.request-items-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 10px;
    table-layout: fixed;
    background-color: #f9f9f9; /* легкий серый фон таблицы для контраста с карточкой */
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0,0,0,0.08);
}

.request-items-table th,
.request-items-table td {
    border-bottom: 1px solid #ccc; /* более контрастная граница */
    padding: 12px 10px;
    text-align: left;
    vertical-align: top;
    word-wrap: break-word;
}

.request-items-table th {
    background-color: #e9ecef; /* более заметный серый заголовок */
    font-weight: 600;
}

.request-items-table th:nth-child(1),
.request-items-table td:nth-child(1) {
    width: 78%;
}

.request-items-table th:nth-child(2),
.request-items-table td:nth-child(2) {
    width: 12%;
    text-align: center;
}

.request-items-table th:nth-child(3),
.request-items-table td:nth-child(3) {
    width: 10%;
    text-align: center;
}

.btn-delete-item {
    background-color: #ff6b6b;
    color: #fff;
    border: none;
    padding: 5px 10px;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.3s, box-shadow 0.3s;
}

.btn-delete-item:hover {
    background-color: #e63946;
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}

.item-note, .item-tenders {
    margin: 10px 0;
    padding: 10px 14px;
    background-color: #dbe9ff; /* чуть ярче голубой фон для контраста */
    border-left: 4px solid #007bff;
    border-radius: 6px;
    font-size: 0.9rem;
    color: #111;
    word-wrap: break-word;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05); /* легкая тень для блоков */
}

.item-tenders ul {
    margin: 5px 0 0 0;
    padding-left: 20px;
}

.item-tenders li a {
    color: #007bff;
    text-decoration: none;
}

.item-tenders li a:hover {
    text-decoration: underline;
}
