/* page: arbitrations
   Стили ячеек грида арбитража. Глобальные (не scoped) — иначе не достанут
   до содержимого CellDisplayTemplate, которое рендерит DxGrid. */

.display-container,
.edit-container {
    display: flex;
    align-items: center;
    gap: 5px;
}

.edit-button {
    font-size: 12px;
    padding: 0 4px;
}

.status-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.action-buttons {
    display: flex;
    flex-direction: row;
    gap: 5px;
}

.confirm-button,
.reject-button {
    font-size: 12px;
    padding: 2px 5px;
    border-radius: 4px;
    border: none;
    cursor: pointer;
    transition: opacity 0.3s ease-in-out;
}

.confirm-button {
    background-color: #28a745;
    color: white;
}

.reject-button {
    background-color: #dc3545;
    color: white;
}

.confirm-button:disabled,
.reject-button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}
