#allrecords a {
    color: #000000;
    text-decoration: none;
    
}
:root {
  --error:#13030A;
  --warning:#CC3300;
  --primary:#0000FF;
  --success:#198754;
}

  /* Улучшенные уведомления */
        .notification-container {
            position: fixed;
            bottom: 20px;
            right: 20px;
            z-index: 1000;
            display: flex;
            flex-direction: column;
            gap: 15px;
            max-width: 400px;
        }

        .notification {
            background: white;
            border-radius: 12px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
            padding: 18px 20px;
            display: flex;
            align-items: flex-start;
            gap: 15px;
            transform: translateX(150%);
            animation: slideIn 0.4s forwards;
            position: relative;
            overflow: hidden;
        }

        .notification::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            height: 100%;
            width: 5px;
        }

        .notification.success::before {
            background: var(--success);
        }

        .notification.error::before {
            background: var(--error);
        }

        .notification.warning::before {
            background: var(--warning);
        }

        .notification-icon {
            font-size: 22px;
            min-width: 25px;
        }

        .notification.success .notification-icon {
            color: var(--success);
        }

        .notification.error .notification-icon {
            color: var(--error);
        }

        .notification.warning .notification-icon {
            color: var(--warning);
        }

        .notification-content {
            flex: 1;
        }

        .notification-title {
            font-weight: 600;
            margin-bottom: 5px;
            font-size: 16px;
        }

        .notification-message {
            font-size: 14px;
            line-height: 1.5;
        }

        .notification-close {
            background: transparent;
            border: none;
            color: var(--gray);
            cursor: pointer;
            font-size: 16px;
            opacity: 0.7;
            transition: var(--transition);
            padding: 5px;
        }

        .notification-close:hover {
            opacity: 1;
            color: var(--dark);
        }

        @media (max-width: 600px) {
            .auth-container {
                border-radius: 15px;
            }
            
            .auth-header {
                padding: 20px;
            }
            
            .auth-form {
                padding: 20px;
            }
            
            .role-selector {
                flex-direction: column;
                gap: 10px;
            }
            
            .tab-btn {
                padding: 14px 5px;
                font-size: 14px;
            }
            
            .notification-container {
                max-width: calc(100% - 40px);
                left: 20px;
                right: 20px;
            }
        }
        
        /* Стилизация контейнера (обязательно) */
.t-select__wrapper {
  position: relative;
  display: inline-block;
  width: 100%;
  max-width: 300px; /* Ширина по вашему выбору */
}

/* Стилизация самого select */
.t-select__select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 100%;
  padding: 12px 40px 12px 15px; /* Регулируйте отступы */
  font-family: 'Arial', sans-serif; /* Шрифт */
  font-size: 16px;
  color: #333; /* Цвет текста */
  background-color: #f8f8f8; /* Фон */
  border: 1px solid #ddd; /* Рамка */
  border-radius: 8px; /* Закругление углов */
  box-shadow: 0 2px 4px rgba(0,0,0,0.05); /* Тень */
  cursor: pointer;
  outline: none;
  transition: all 0.3s ease;
}

/* При наведении */
.t-select__select:hover {
  border-color: #aaa;
  background-color: #f0f0f0;
}

/* При фокусе */
.t-select__select:focus {
  border-color: #4A90E2;
  box-shadow: 0 0 0 3px rgba(74, 144, 226, 0.2);
}

/* Кастомная стрелка */
.t-select__wrapper::after {
  content: "▼";
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
  font-size: 12px;
  color: #777;
  pointer-events: none;
}

/* Стили для опций */
.t-select__select option {
  padding: 10px;
  background: #fff;
  color: #333;
}

/* Для отключенного состояния */
.t-select__select:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}