/* Основные стили таблиц */
.table {
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.05);
}

.table thead th {
  background-color: #4e73df;
  color: white;
  border-bottom: none;
  padding: 1rem;
}

.table tbody tr:hover {
  background-color: #f8f9fa;
}

/* Стили для карточек */
.card {
  border: none;
  box-shadow: 0 0.15rem 1.75rem 0 rgba(58, 59, 69, 0.15);
}

.card-header {
  border-bottom: 1px solid rgba(0, 0, 0, 0.125);
}

/* Стили для кнопки в навигации */
.navbar-nav .btn {
  padding: 0.4rem 1rem;
  border-radius: 0.3rem;
  font-weight: 500;
  transition: all 0.3s ease;
  color: #ffffff;
  background-color: #1a237e; /* Оранжевый оттенок */
  border: none;
}
.navbar-nav .btn-nav:hover {
  background-color: #0d1b5a; /* Ещё более тёмный синий при наведении */
  transform: translateY(-1px);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

/* Иконка в кнопке */
.navbar-nav .btn i {
  font-size: 1rem;
  vertical-align: middle;
}

/* Стили для блока кнопок */
.navbar-buttons-block {
  background-color: #ffffff;
  border-radius: 0.4rem;
  padding: 0.3rem 0.5rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
/* Add to base.css */
.table-success-light {
    background-color: rgba(25, 135, 84, 0.05);
}
.table-danger-light {
    background-color: rgba(220, 53, 69, 0.05);
}
.avatar-icon {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.05);
}
.floating-action {
    transition: all 0.3s ease;
    transform: translateY(100px);
}
.floating-action.visible {
    transform: translateY(0);
}
.table-hover tbody tr:hover {
    background-color: rgba(0, 0, 0, 0.03) !important;
}
.bg-opacity-10 {
    background-color: rgba(var(--bs-primary-rgb), 0.1) !important;
}

/* Currency formatting */
.formatted-currency::before {
    content: "KGS ";
    opacity: 0.7;
}
.page-link {
    border-radius: 4px !important;
    margin: 0 2px;
}

/* Добавьте в самый конец вашего styles.css */
/* Стили для пагинации */
.pagination {
    display: flex;
    justify-content: center;
    margin-top: 20px;
    flex-wrap: wrap;
}

.page-item {
    margin: 0 3px;
    border-radius: 4px;
}

.page-link {
    border: 1px solid #dee2e6;
    border-radius: 4px !important;
    color: var(--bs-primary);
    min-width: 36px;
    text-align: center;
    padding: 6px 12px;
    transition: all 0.2s ease;
}

.page-link:hover {
    background-color: #e9ecef;
    border-color: #dee2e6;
}

.page-item.active .page-link {
    background-color: var(--bs-primary);
    border-color: var(--bs-primary);
    color: white;
}

.page-item.disabled .page-link {
    color: #6c757d;
    pointer-events: none;
    background-color: white;
    border-color: #dee2e6;
}

.page-item:not(:first-child) .page-link, 
.page-item:not(:last-child) .page-link {
    margin: 0 2px;
}

.progress {
    height: 30px;
    border-radius: 15px;
    overflow: visible;
    box-shadow: inset 0 1px 2px rgba(0,0,0,.1);
}

.progress-bar {
    border-radius: 15px;
    transition: width 0.5s ease;
}

.status-card {
    transition: all 0.3s ease;
    border-radius: 10px;
    border: none;
}

.status-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,.1);
}