body {
    font-family: Arial, sans-serif;
}

table {
    width: 100%;
    border-collapse: collapse;
}

th, td {
    padding: 8px;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

th {
    background-color: #f2f2f2;
}

.pagination {
    margin-top: 20px;
}

.list-group-item.bg-light {
    background-color: #ffeeba !important;
}
.list-group-item:hover {
    background-color: #ffffcc;
}

.alert {
	opacity: 1;
	transition: opacity 1s ease-out;
}

.alert.fade-out {
	opacity: 0;
}

/* Стили для подсветки строк */
.success-row {
    background-color: #d4edda !important; /* Светло-зеленый */
}

.pending-row {
    background-color: #fff3cd !important; /* Светло-желтый */
}

/* Необязательно: добавьте hover-эффект */
.table tbody tr:hover {
    background-color: #f8f9fa !important;
}

/* В style.css */
#toasty-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 10000;
}

.point-marker {
    cursor: pointer;
    width: 10px;
    height: 10px;
    background-color: rgba(255, 99, 71, 1);
    border-radius: 50%;
}