:root {
    --primary-color: #D1D3D4;
    --secondary-color: #58595B;
    --dark-color: #000000;
    --accent: #FFF8E6;    
    --accent1: #FFCB05;
    --accent2: #FDB913;
    --white: #FFFFFF;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--dark-color);
    background-color: var(--white);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.header {
    background-color: var(--accent);
    padding: 40px 0;
}

.header-logo {
    height: 80px;
    width: auto;
}

.site-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--dark-color);
    text-align: center;
    margin: 0;
    padding: 0 20px;
}

.navbar {
  padding-left: 0;
  padding-right: 0;
}

.navbar > .container,
.navbar > .container-fluid {
  padding-left: 0;
  padding-right: 0;
}

.navbar-nav {
  display: flex;
  width: 100%;
  justify-content: space-between; 
}

.navbar-nav .nav-link {
    color: var(--dark-color) !important;
    font-weight: 400;
    padding: 10px 15px;
    transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: var(--dark-color) !important;
    background-color: var(--white);
    border-radius: 25px;
    font-weight: 550;
}

.navbar-nav .nav-link.active {
    color: var(--dark-color) !important;
    background-color: var(--white);
    border-radius: 25px;
    font-weight: 550;
}

/* Стили для футера */
.footer {
    margin-top: auto;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--accent);
    color: var(--dark-color);
    padding: 40px 0 40px 0;
    z-index: 1000;
    width: 100%;
}

.footer-logo {
    height: 100px;
    width: auto;
    margin-bottom: 20px;
}

/* Навигация в футере */
.footer-link {
    color: var(--dark-color);
    text-decoration: none;
    font-weight: 400;
    padding: 5px 0;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-link:hover {
    color: var(--dark-color) !important;
    background-color: var(--white);
    border-radius: 25px;
    font-weight: 550;
}

/* Контакты в футере */
.footer-contacts {
    padding: 5px 0;
    text-align: left;
    display: inline-block;
}

.footer-email {
    color: var(--dark-color);
    text-decoration: none;
    font-weight: 400;
    transition: all 500ms;
}

.footer-email:hover {
    color: var(--secondary-color) !important;
    transition: all 500ms;
}

/* Копирайт */
.footer-copyright {
    font-size: 0.9rem;
    color: var(--dark-color);
    padding-left: 0;
    white-space: nowrap; 
}

/* Стили для контента */
.content-section {
    padding: 60px 0;
}

.section-title {
    color: var(--dark-color);
    font-size: 1.8rem;
    font-weight: 650;
    margin-bottom: 30px;
    text-align: left;
    text-transform: uppercase;
}

.content-content p {
    margin-bottom: 15px;
    line-height: 1.6;
}

.content-content ul {
    padding-left: 20px;
    margin-bottom: 20px;
}

.content-content li {
    margin-bottom: 10px;
}

/* Стили для кнопки регистрации */
.registration-btn {
    background-color: var(--accent2); 
    color: var(--dark-color); 
    font-weight: 600;
    padding: 8px 20px;
    border-radius: 25px;
    transition: all 0.3s ease;
    text-decoration: none;
    border: 1px solid transparent;
}

.registration-btn:hover,
.registration-btn:focus {
    background-color: var(--white); 
    color: var(--dark-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    border-color: var(--accent1);
}

/* Кнопка закрытия меню */
.menu-close-btn {
    display: none;
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background-color: var(--accent2);
    border: none;
    border-radius: 50%;
    color: var(--dark-color);
    font-size: 28px;
    font-weight: bold;
    line-height: 1;
    cursor: pointer;
    z-index: 1001;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    padding: 0;
    align-items: center;
    justify-content: center;
}

.menu-close-btn:hover {
    background-color: var(--accent1);
    transform: rotate(90deg);
}

.menu-close-btn:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(253, 185, 19, 0.3);
}

/* Для десктопной версии */
@media (min-width: 769px) {
    .menu-close-btn {
        display: none !important;
    }
}

/* Для мобильной версии */
@media (max-width: 768px) {
    /* Общие стили для мобильной версии */
    .site-title {
        font-size: 1rem;
        text-align: center;
    }
    
    .header-logos {
        flex-direction: column;
        align-items: center;
    }
    
    .content-content,
    .content-box {
        padding: 20px;
    }
    
    .registration-btn {
        padding: 6px 15px;
        font-size: 0.9rem;
        margin-right: 10px !important;
    }
    
    /* Футер в мобильной версии */
    .footer {
        padding: 30px 0 20px 0;
    }
    
    .footer-logo {
        height: 80px;
        margin-bottom: 15px;
        text-align: center;
    }
    
    .footer-nav ul {
        flex-direction: column;
        align-items: center;
    }
    
    .footer-nav li {
        margin: 5px 0 !important;
    }
    
    .footer-contacts {
        text-align: center !important;
        margin-top: 20px;
    }
    
    .footer-copyright {
        text-align: center;
        margin-top: 20px;
    }
    
    .row.align-items-center {
        text-align: center;
    }
    
    .col-md-3, .col-md-6 {
        margin-bottom: 20px;
        text-align: center;
    }
    
    .header .row.align-items-center {
        flex-direction: column;
        align-items: stretch;
    }
    
    .header .col-md-2,
    .header .col-md-10 {
        width: 100%;
        max-width: 100%;
        flex: 0 0 100%;
        justify-content: center;
        text-align: center;
    }
    
    .header-logo {
        margin-bottom: 20px;
    }
    
    /* Контейнер для кнопки регистрации и бургера */
    .mobile-header-controls {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        padding: 0 15px;
        margin-bottom: 20px;
    }
    
    /* Кнопка регистрации в мобильной версии */
    .mobile-registration-btn {
        background-color: var(--accent2);
        color: var(--dark-color);
        font-weight: 600;
        padding: 8px 20px;
        border-radius: 25px;
        text-decoration: none;
        border: 2px solid transparent;
        transition: all 0.3s ease;
        font-size: 0.9rem;
    }
    
    .mobile-registration-btn:hover,
    .mobile-registration-btn:focus {
        background-color: var(--white);
        color: var(--dark-color);
        border: 1px solid var(--accent1);
        transform: translateY(-2px);
        box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    }
    
    /* Стилизация бургер-кнопки */
    .navbar-toggler {
        border: 1px solid var(--accent2);
        border-radius: 15px;
        padding: 6px 12px;
        background-color: var(--white);
        transition: all 0.3s ease;
    }
    
    .navbar-toggler:hover {
        background-color: var(--accent2);
        transform: translateY(-2px);
        box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    }
    
    .navbar-toggler-icon {
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(0, 0, 0, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        width: 1.2em;
        height: 1.2em;
    }
    
    /* Скрываем десктопную кнопку регистрации в мобильной версии */
    .header .col-md-10 .registration-btn {
        display: none;
    }
    
    /* СТИЛИ ДЛЯ МОБИЛЬНОГО МЕНЮ */
    .navbar-collapse:not(.show) {
        display: none !important;
    }
    
    .navbar-collapse.show {
        display: flex !important;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-color: rgba(255, 255, 255, 0.98);
        z-index: 1050;
        padding: 70px 20px 20px;
        overflow-y: auto;
        align-items: center;
        justify-content: center;
    }
    
    .navbar-collapse.show .menu-close-btn {
        display: flex !important;
    }
    
    .navbar-nav {
        flex-direction: column;
        width: 100%;
        max-width: 400px;
        padding: 30px 20px;
        background-color: var(--white);
        border-radius: 20px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
        margin-top: 0;
        position: relative;
        z-index: 1;
    }
    
    .navbar-nav .nav-item {
        margin: 10px 0;
        width: 100%;
        text-align: center;
    }
    
    .navbar-nav .nav-link {
        padding: 15px 25px;
        border-radius: 30px;
        display: block;
        font-size: 1.1rem;
        font-weight: 500;
        transition: all 0.3s ease;
    }
    
    .navbar-nav .nav-link:hover,
    .navbar-nav .nav-link.active {
        background-color: var(--accent);
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }
    
    /* Анимация появления пунктов меню */
    .navbar-collapse.show .nav-item {
        animation: fadeInUp 0.4s ease forwards;
        opacity: 0;
    }
    
    @keyframes fadeInUp {
        from {
            opacity: 0;
            transform: translateY(15px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    /* Задержки для анимации */
    .navbar-collapse.show .nav-item:nth-child(1) { animation-delay: 0.1s; }
    .navbar-collapse.show .nav-item:nth-child(2) { animation-delay: 0.15s; }
    .navbar-collapse.show .nav-item:nth-child(3) { animation-delay: 0.2s; }
    .navbar-collapse.show .nav-item:nth-child(4) { animation-delay: 0.25s; }
    .navbar-collapse.show .nav-item:nth-child(5) { animation-delay: 0.3s; }
    .navbar-collapse.show .nav-item:nth-child(6) { animation-delay: 0.35s; }
    .navbar-collapse.show .nav-item:nth-child(7) { animation-delay: 0.4s; }
    .navbar-collapse.show .nav-item:nth-child(8) { animation-delay: 0.45s; }
    .navbar-collapse.show .nav-item:nth-child(9) { animation-delay: 0.5s; }
}

/* Для планшетов */
@media (max-width: 992px) and (min-width: 769px) {
    .navbar-nav .nav-link {
        padding: 8px 10px;
        font-size: 0.9rem;
    }
    
    .navbar-nav {
        justify-content: space-around;
    }
    
    .footer-nav li {
        margin: 0 10px !important;
    }
    
    .footer-link {
        font-size: 0.9rem;
    }
}

/* Убираем стандартные отступы Bootstrap для навигации */
.navbar-expand-md .navbar-nav .nav-link {
    padding-right: 15px;
    padding-left: 15px;
}

/* Стили для переключения иконок бургер/крестик */
.navbar-toggler {
    position: relative;
    width: 44px;
    height: 44px;
}

.navbar-toggler-icon,
.close-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.3s ease;
}

.close-icon {
    font-size: 28px;
    font-weight: bold;
    line-height: 1;
    color: var(--dark-color);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Анимация для иконок */
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
    opacity: 0;
    transform: translate(-50%, -50%) rotate(90deg);
}

.navbar-toggler[aria-expanded="true"] .close-icon {
    opacity: 1;
    transform: translate(-50%, -50%) rotate(0deg);
}

.navbar-toggler[aria-expanded="false"] .navbar-toggler-icon {
    opacity: 1;
    transform: translate(-50%, -50%) rotate(0deg);
}

.navbar-toggler[aria-expanded="false"] .close-icon {
    opacity: 0;
    transform: translate(-50%, -50%) rotate(-90deg);
}

/* Для мобильной версии */
@media (max-width: 768px) {
    .navbar-toggler {
        display: flex;
        align-items: center;
        justify-content: center;
        border: 1px solid var(--accent2);
        border-radius: 15px;
        padding: 8px;
        background-color: var(--white);
        transition: all 0.3s ease;
    }
    
    .navbar-toggler:hover {
        background-color: var(--accent2);
        transform: translateY(-2px);
        box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    }
    
    .navbar-toggler-icon {
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(0, 0, 0, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        width: 1.2em;
        height: 1.2em;
        transition: opacity 0.3s ease, transform 0.3s ease;
    }
    
    .close-icon {
        width: 24px;
        height: 24px;
        font-size: 24px;
        transition: opacity 0.3s ease, transform 0.3s ease;
    }
}




h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--dark-color);
    border-bottom: 1.5px solid var(--accent1);
    padding-bottom: 10px;
    margin: 2rem 0 1.5rem;
}

h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--dark-color);
        padding: 8px 15px;
    margin: 1.5rem 0 1rem;
    border-radius: 5px;
}

/* Стили для файлов с иконками */

.file-item {
    border-radius: 10px;
    transition: all 0.3s ease;
}

.file-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}

.filetochange {
    text-decoration: none;
    color: inherit;
    border-radius: 10px;
}

.filetochange:hover {
    text-decoration: none;
    color: inherit;
}

.file-icon {
    position: relative;
    min-width: 100px;
}

.file-icon-img {
    width: 80px;
    height: 80px;
    display: block;
    margin: 0 auto;
    transition: transform 0.3s ease;
}

.filetochange:hover .file-icon-img {
    transform: scale(1.05);
}

.file-info {
    margin-top: 8px;
    font-size: 0.85rem;
}

.file-format {
    display: block;
    font-weight: bold;
    color: #333;
    font-size: 0.9rem;
}

.file-size {
    display: block;
    color: #666;
    font-size: 0.8rem;
}

.file-title {
    font-weight: 550;
    font-size: 1.2rem;
    margin-bottom: 0.5rem !important;
}

.file-description {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.4;
}

/* Для адаптивности на мобильных */
@media (max-width: 768px) {
    .file-item {
        padding: 8px !important;
    }
    
    .file-icon {
        min-width: 80px;
        margin-right: 15px !important;
    }
    
    .file-icon-img {
        width: 65px;
        height: 65px;
    }
    
    .file-title {
        font-size: 1.1rem;
    }
    
    .file-description {
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .file-icon {
        min-width: 70px;
    }
    
    .file-icon-img {
        width: 55px;
        height: 55px;
    }
    
    .file-info {
        font-size: 0.75rem;
    }
    
    .file-title {
        font-size: 1rem;
    }
}

/* Стили для секций конференций */
.conference-section {
    margin-bottom: 50px;
    padding-bottom: 30px;
    border-bottom: 2px solid var(--accent);
}

.conference-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
}
/* Стили для главной страницы */
.conference-dates {
    padding: 20px;
    background: var(--accent);
    border-radius: 10px;
    color: var(--dark-color);
    margin-bottom: 30px;
    text-align: center;
}

.conference-dates h3 {
    color: var(--dark-color);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 10px;
    border-bottom: none;
    padding-bottom: 0;
}

.conference-info-box ul {
    padding-left: 20px;
}

.conference-info-box li {
    margin-bottom: 15px;
    line-height: 1.5;
    color: var(--dark-color);
}

.conference-info-box strong {
    color: var(--secondary-color);
    font-weight: 600;
}

.telegram-notice a.btn-light:hover {
    background-color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}


/* Адаптивность для главной */
@media (max-width: 768px) {
    .conference-dates h3 {
        font-size: 1.5rem;
    }
    
    .quick-links .btn-outline-primary {
        min-height: 80px;
        padding: 15px 10px;
    }
    
    .telegram-notice {
        padding: 15px;
    }
}

@media (max-width: 576px) {
    .conference-info-box .row > div {
        margin-bottom: 15px;
    }
    
    .conference-info-box .row > div:last-child {
        margin-bottom: 0;
    }
    
    .quick-links .col-md-4 {
        margin-bottom: 10px;
    }
    
    .quick-links .btn-outline-primary {
        font-size: 0.9rem;
        padding: 10px;
    }
}

/* Анимация для главной страницы */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.content-content > * {
    animation: fadeIn 0.6s ease-out;
}

.content-content > *:nth-child(1) { animation-delay: 0.1s; }
.content-content > *:nth-child(2) { animation-delay: 0.2s; }
.content-content > *:nth-child(3) { animation-delay: 0.3s; }
.content-content > *:nth-child(4) { animation-delay: 0.4s; }
.content-content > *:nth-child(5) { animation-delay: 0.5s; }

/* Стили для фото академика на главной */
.academic-photo {
    padding: 20px;
    margin: 30px 0;
    text-align: center;
}

.academic-photo img {
    max-width: 300px;
    width: 100%;
    height: auto;
}


.academic-photo p {
    color: var(--secondary-color);
    font-style: italic;
    margin-top: 10px;
    font-size: 1.1rem;
}

/* Адаптивность для фото */
@media (max-width: 768px) {
    .academic-photo {
        padding: 15px;
        margin: 20px 0;
    }
    
    .academic-photo img {
        max-width: 250px;
    }
}

@media (max-width: 576px) {
    .academic-photo img {
        max-width: 200px;
    }
    
    .academic-photo p {
        font-size: 1rem;
    }
}

/* ПРОСТОЙ ФОТО-СЛАЙДЕР - МИНИМАЛЬНЫЙ РАБОЧИЙ ВАРИАНТ */
.simple-slider-section {
    padding: 20px 0;
    margin: 20px 0;
}

.simple-slider-container {
    position: relative;
    width: 100%;
    height: 300px;
    margin: 0 auto;
    overflow: hidden;
}

.simple-slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.simple-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.simple-slide.active {
    opacity: 1;
}

.simple-slide-img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
}

/* Кнопки */
.simple-prev-btn, .simple-next-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--accent1);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 24px;
    color: #000;
    cursor: pointer;
    z-index: 100;
    opacity: 0.7;
}

.simple-prev-btn:hover, .simple-next-btn:hover {
    opacity: 1;
    background: var(--accent2);
}

.simple-prev-btn {
    left: 15px;
}

.simple-next-btn {
    right: 15px;
}

/* Точки */
.simple-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 15px;
}

.simple-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ccc;
    cursor: pointer;
    transition: background 0.3s;
}

.simple-dot.active {
    background: #FFCB05;
}
/* Стили для страницы регистрации */

.registration-notice {
    background-color: var(--accent);
    border-left: 4px solid var(--accent1);
    padding: 20px;
    margin-bottom: 40px;
    border-radius: 8px;
}

.registration-notice p {
    margin-bottom: 0;
    line-height: 1.6;
}

.registration-form {
    background-color: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.form-section {
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--primary-color);
}

.form-section:last-of-type {
    border-bottom: none;
}

.form-section-title {
    color: var(--dark-color);
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 25px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--accent2);
}

.form-label {
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 8px;
}

.form-label:after {
    content: " *";
    color: #dc3545;
    font-weight: bold;
}

.form-label.optional:after {
    content: "";
}

.form-control, .form-select {
    border: 2px solid var(--primary-color);
    border-radius: 8px;
    padding: 10px 15px;
    transition: all 0.3s ease;
}

.form-control:focus, .form-select:focus {
    border-color: var(--accent2);
    box-shadow: 0 0 0 0.25rem rgba(253, 185, 19, 0.25);
}

.form-check-input {
    width: 20px;
    height: 20px;
    margin-top: 0.2em;
    border: 2px solid var(--secondary-color);
}

.form-check-input:checked {
    background-color: var(--accent2);
    border-color: var(--accent2);
}

.form-check-input:focus {
    border-color: var(--accent2);
    box-shadow: 0 0 0 0.25rem rgba(253, 185, 19, 0.25);
}

.form-check-label {
    margin-left: 8px;
    line-height: 1.5;
}

.btn-link {
    color: var(--accent1);
    text-decoration: none;
    font-weight: 600;
}

.btn-link:hover {
    color: var(--accent2);
    text-decoration: underline;
}

.card.card-body {
    background-color: var(--accent);
    border: 1px solid var(--accent1);
    border-radius: 8px;
}

.form-note {
    color: var(--secondary-color);
    font-size: 0.9rem;
    font-style: italic;
}

/* Стили для мобильной версии */
@media (max-width: 768px) {
    .conference-dates h3 {
        font-size: 1.4rem;
    }
    
    .conference-dates h4 {
        font-size: 1.1rem;
    }
    
    .registration-form {
        padding: 20px;
    }
    
    .form-section-title {
        font-size: 1.2rem;
    }
    
    .registration-notice {
        padding: 15px;
    }
}
.table thead th {
    background-color: var(--accent1);
    color: black;
    border-bottom: none;
}
.table-striped tbody tr:nth-of-type(odd) {
    background-color: rgba(111, 66, 193, 0.05);
}
.table-container {
    background: rad;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0,0,0,0.1);
    margin-top: 20px;
}
.page-header {
    background: linear-gradient(45deg, #6f42c1, #0d6efd);
    color: white;
    padding: 30px 0;
    border-radius: 10px;
    margin-bottom: 20px;
}
.badge-section {
    background-color: var(--accent);
    color: black;
    font-size: 0.8em;
    padding: 3px 8px;
    border-radius: 4px;
}
.table-responsive {
    border-radius: 8px;
    overflow: hidden;
}

    }
    
    .badge {
        font-size: 0.7rem;
        padding: 4px 8px;
    }
    
    .badge-section {
        font-size: 0.65rem;
        padding: 3px 6px;
    }
}

@media (max-width: 576px) {
    .page-header-simple {
        padding: 25px 10px;
    }
    
    .page-header-simple h1 {
        font-size: 1.8rem;
    }
    
    .table td {
        padding: 12px 5px;
    }
    
    .table td:nth-child(3),
    .table td:nth-child(4) {
        max-width: 150px;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }
}