@media print
{
    .no-print, .no-print *
    {
        display: none !important;
        visibility: hidden;
    }
}

html, body {
    font-family: sans-serif!important;
}

.navbar-brand span {

    color:#fff92a;;
}

/* Общие стили для кнопок */
.btn-create {
    background: linear-gradient(135deg, #28a745, #218838);
    color: white;
    font-size: 16px;
    font-weight: bold;
    padding: 10px 20px;
    border-radius: 30px;
    transition: all 0.3s ease-in-out;
    border: none;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.btn-create:hover {
    background: linear-gradient(135deg, #218838, #28a745);
    transform: scale(1.05);
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2);
}

.list-group-item {
    border-radius: 10px;
    margin: 10px 0;
    padding: 15px;
    background: #fff;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.list-group-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2);
}

/* Стили для карточек */
.item-card {
    background: #f8f9fa;
    border-left: 5px solid #28a745;
}

.item-card:hover {
    background: #e9ecef;
    border-left: 5px solid #218838;
}

/* Стили для текста и кнопок в карточке */
.item-card .text-end {
    font-size: 18px;
    font-weight: bold;
    color: #333;
}

/* Стили для пустых данных */
.text-center h2 {
    font-size: 22px;
    color: #555;
    font-weight: 600;
}

.text-center .btn-create {
    padding: 12px 24px;
    font-size: 18px;
    border-radius: 25px;
    margin-top: 15px;
}

/* Анимации */
.fade-in {
    animation: fadeIn 1s ease-out forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Подключаем иконки FontAwesome */
.fas {
    font-size: 20px;
    margin-right: 8px;
}

/* Кнопки в форме создания заказа */




/* Кастомный стиль для navbar */
.custom-navbar {
    background: linear-gradient(135deg, #fbc531, #e84118);
    padding: 12px 0;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Логотип */
.logo {
    border-radius: 8px;
    transition: transform 0.3s ease;
}
.logo:hover {
    transform: scale(1.1);
}

/* Текст бренда */
.brand-text {
    font-size: 20px;
    font-weight: bold;
    color: #fff;
}

/* Навигационные ссылки */
.navbar-nav .nav-link {
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    padding: 8px 15px;
    border-radius: 8px;
    transition: background 0.3s, transform 0.2s;
}
.navbar-nav .nav-link:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.05);
}

/* Кнопка выхода */
.navbar-nav .logout {
    color: #ffeaa7;
}
.navbar-nav .logout:hover {
    color: #fd1414;
}

/* Иконки */
.navbar-nav .nav-link i {
    margin-right: 8px;
}

/* Кнопка-бургер */
.custom-toggler {
    border: none;
    background: none;
}
.custom-toggler .navbar-toggler-icon {
    filter: invert(1);
}

.plane {
    /* text-transform: uppercase; */
    font-weight: bold;
    border-radius: 4px;
    color: #fff;
    height: 22px;
    line-height: 22px;
    padding: 5px 10px;
}
