/* =============================================
   VACANCY PANEL STYLES - Панель карточек вакансий
   ============================================= */

/* Панель вакансий - занимает всё пространство от sidebar до правого края */
.vacancy-panel {
    position: fixed;
    top: 0;
    left: 300px; /* Ширина sidebar */
    right: 60px; /* Оставляем место для правой панели кнопок */
    width: auto;
    height: 100vh;
    background: #FAFAFA;
    box-shadow: none;
    z-index: 100;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease;
    overflow: hidden;
    transform: translateX(100%);
    opacity: 0;
    pointer-events: none;
}

.vacancy-panel.open {
    transform: translateX(0);
    opacity: 1;
    pointer-events: auto;
}

/* Когда sidebar свёрнут */
aside#sidebar.collapsed ~ .chat-wrapper .vacancy-panel,
.vacancy-panel.sidebar-collapsed {
    left: 60px;
}

/* =============================================
   HEADER
   ============================================= */

.vacancy-panel-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 32px;
    border-bottom: none;
    flex-shrink: 0;
    background: #FAFAFA;
}

.vacancy-panel-refresh-btn {
    background: #3F3FE6;
    color: #fff;
    border: none;
    border-radius: 10px;
    padding: 6px 16px;
    font-family: 'Manrope', sans-serif;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.15s, opacity 0.15s;
    flex-shrink: 0;
    white-space: nowrap;
    margin-left: auto;
    min-width: 90px;
    text-align: center;
}

.vacancy-panel-refresh-btn:hover {
    background: #3333C0;
}

.vacancy-panel-refresh-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    background: #8080E6;
    min-width: 90px;
}

.vacancy-panel-header-left {
    display: flex;
    align-items: center;
    gap: 16px;
}

.vacancy-panel-back {
    width: 40px;
    height: 40px;
    border: 1px solid #ECEEFF;
    background: #FFFFFF;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(0,0,0,0.5);
    transition: all 0.2s ease;
}

.vacancy-panel-back:hover {
    background: #F2F4FF;
    border-color: #ECEEFF;
    color: rgba(0,0,0,0.8);
}

.vacancy-panel-back svg {
    width: 20px;
    height: 20px;
}

.vacancy-panel-title-group {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.vacancy-panel-title {
    font-family: 'Manrope', sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: #000000;
    margin: 0;
}

.vacancy-panel-subtitle {
    font-family: 'Manrope', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: rgba(0,0,0,0.3);
    margin: 0;
}

/* Переключатель "Избранное" */
.vacancy-panel-favorites-toggle {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    padding: 8px 12px;
    border-radius: 8px;
    transition: background 0.2s ease;
}

.vacancy-panel-favorites-toggle:hover {
    background: #F3F4F6;
}

.vacancy-panel-favorites-toggle span {
    font-family: 'Manrope', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: rgba(0,0,0,0.5);
}

.vacancy-panel-favorites-toggle .heart-icon {
    width: 20px;
    height: 20px;
    color: #EF4444;
}

.vacancy-panel-favorites-toggle input[type="checkbox"] {
    display: none;
}

/* =============================================
   CONTENT AREA
   ============================================= */

.vacancy-panel-content {
    flex: 1;
    overflow-y: auto;
    overflow-x: hidden;
    padding: 24px 32px;
    padding-bottom: 60px;
    background: #FAFAFA;
}

.vacancy-panel-content::-webkit-scrollbar {
    width: 6px;
}

.vacancy-panel-content::-webkit-scrollbar-track {
    background: transparent;
}

.vacancy-panel-content::-webkit-scrollbar-thumb {
    background: #ECEEFF;
    border-radius: 3px;
}

/* =============================================
   CARDS GRID - Адаптивная сетка
   ============================================= */

.vacancy-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 16px;
    width: 100%;
    max-width: 100%;
    align-items: stretch; /* Растягиваем карточки по высоте */
}

/* =============================================
   VACANCY CARD
   ============================================= */

.vacancy-panel-card {
    background: #FFFFFF;
    border: 1px solid #ECEEFF;
    border-radius: 16px;
    padding: 20px 24px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    transition: box-shadow 0.2s ease;
    height: 100%; /* Занимает всю высоту ячейки сетки */
    min-height: 0; /* Позволяет карточке сжиматься при необходимости */
}

.vacancy-panel-card:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

/* Card Title */
.vacancy-panel-card-title {
    font-family: 'Manrope', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #000000;
    margin: 0;
    line-height: 1.4;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
}

/* Card Tags Row (теги + сердечко) */
.vacancy-panel-card-tags-row {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 4px;
}

/* Card Tags */
.vacancy-panel-card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    flex: 1;
}

.vacancy-panel-tag {
    display: inline-flex;
    align-items: center;
    padding: 4px 12px;
    border-radius: 20px;
    font-family: 'Manrope', sans-serif;
    font-size: 12px;
    font-weight: 400;
    background: #F2F4FF;
    border: 1px solid #ECEEFF;
    color: rgba(0,0,0,0.5);
}

/* Inline favorite button next to tags */
.vacancy-panel-favorite-inline {
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease;
    flex-shrink: 0;
}

.vacancy-panel-favorite-inline:hover {
    transform: scale(1.15);
}

.vacancy-panel-favorite-inline svg {
    width: 20px;
    height: 20px;
}

.vacancy-panel-favorite-inline .heart-outline {
    color: #ECEEFF;
}

.vacancy-panel-favorite-inline .heart-filled {
    color: #EF4444;
    display: none;
}

.vacancy-panel-favorite-inline.active .heart-outline {
    display: none;
}

.vacancy-panel-favorite-inline.active .heart-filled {
    display: block;
}

/* Card Salary */
.vacancy-panel-card-salary {
    font-family: 'Manrope', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: rgba(0,0,0,0.8);
    margin: 8px 0 0 0;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

/* Card Company */
.vacancy-panel-card-company {
    font-family: 'Manrope', sans-serif;
    font-size: 13px;
    font-weight: 500;
    color: rgba(0,0,0,0.5);
    margin: 0;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

/* Card City */
.vacancy-panel-card-city {
    font-family: 'Manrope', sans-serif;
    font-size: 13px;
    color: rgba(0,0,0,0.3);
    margin: 0;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

/* Card Footer */
.vacancy-panel-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto; /* Прижимает футер к низу карточки */
    gap: 8px;
    flex-wrap: wrap;
    padding-top: 12px; /* Отступ сверху вместо margin-top */
}

.vacancy-panel-card-buttons {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

/* Apply Button - синяя/фиолетовая */
.vacancy-panel-apply-btn {
    background: #3F3FE6;
    color: white;
    border: none;
    border-radius: 20px;
    padding: 8px 16px;
    font-family: 'Manrope', sans-serif;
    font-size: 12px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.15s ease;
    white-space: nowrap;
}

.vacancy-panel-apply-btn:hover {
    background: #3333C0;
    transform: translateY(-1px);
}

/* Applied state - серая, неактивная */
.vacancy-panel-apply-btn.applied {
    background: #C0C0C8;
    cursor: default;
    pointer-events: none;
}

.vacancy-panel-apply-btn.applied:hover {
    background: #C0C0C8;
    transform: none;
}

/* Details Button */
.vacancy-panel-details-btn {
    background: rgba(63, 63, 230, 0.3);
    color: #fff;
    border: none;
    border-radius: 20px;
    padding: 8px 16px;
    font-family: 'Manrope', sans-serif;
    font-size: 12px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.15s ease;
    white-space: nowrap;
}

.vacancy-panel-details-btn:hover {
    background: rgba(63, 63, 230, 0.4);
}

/* Viewers count */
.vacancy-panel-card-viewers {
    font-family: 'Manrope', sans-serif;
    font-size: 11px;
    color: #ECEEFF;
    white-space: nowrap;
    flex-shrink: 0;
}

/* =============================================
   LOADING & EMPTY STATES
   ============================================= */

.vacancy-loading {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
}

.vacancy-loading-spinner {
    width: 40px;
    height: 40px;
    border: 3px solid #ECEEFF;
    border-top-color: #3F3FE6;
    border-radius: 50%;
    animation: vacancy-spin 0.8s linear infinite;
}

@keyframes vacancy-spin {
    to {
        transform: rotate(360deg);
    }
}

.vacancy-loading-text {
    font-family: 'Manrope', sans-serif;
    font-size: 14px;
    color: rgba(0,0,0,0.5);
    margin-top: 16px;
}

.vacancy-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    text-align: center;
}

.vacancy-empty-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 16px;
    color: #ECEEFF;
}

.vacancy-empty-text {
    font-family: 'Manrope', sans-serif;
    font-size: 14px;
    color: rgba(0,0,0,0.3);
}

/* =============================================
   RESPONSIVE
   ============================================= */

/* На широких экранах - две колонки */
@media (min-width: 1000px) {
    .vacancy-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* На очень широких экранах - три колонки */
@media (min-width: 1400px) {
    .vacancy-cards-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* На узких экранах - одна колонка */
@media (max-width: 750px) {
    .vacancy-cards-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .vacancy-panel {
        left: 0;
        right: 0;
    }

    .vacancy-panel-content {
        padding: 16px;
    }
    
    .vacancy-panel-header {
        padding: 16px;
        flex-wrap: wrap;
        gap: 8px;
    }

    .vacancy-panel-favorites-toggle {
        margin-left: 0;
    }

    .vacancy-panel-refresh-btn {
        margin-left: auto;
    }
}

/* Карточки не должны вылезать за границы */
.vacancy-panel-card {
    max-width: 100%;
    box-sizing: border-box;
}

/* =============================================
   VACANCY MODAL - Модальное окно деталей вакансии
   ============================================= */

.vacancy-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.vacancy-modal-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.vacancy-modal {
    background: #FFFFFF;
    border-radius: 16px;
    width: 100%;
    max-width: 800px;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transform: scale(0.95);
    transition: transform 0.3s ease;
}

.vacancy-modal-overlay.active .vacancy-modal {
    transform: scale(1);
}

.vacancy-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #F3F4F6;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(0,0,0,0.5);
    transition: all 0.2s ease;
    z-index: 10;
}

.vacancy-modal-close:hover {
    background: #ECEEFF;
    color: rgba(0,0,0,0.8);
}

.vacancy-modal-close svg {
    width: 18px;
    height: 18px;
}

.vacancy-modal-header {
    padding: 32px 32px 24px 32px;
    border-bottom: 1px solid #ECEEFF;
    flex-shrink: 0;
}

.vacancy-modal-title {
    font-family: 'Manrope', sans-serif;
    font-size: 24px;
    font-weight: 600;
    color: #000000;
    margin: 0 0 16px 0;
    line-height: 1.3;
}

.vacancy-modal-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 12px;
}

.vacancy-modal-tag {
    display: inline-flex;
    align-items: center;
    padding: 4px 12px;
    border-radius: 20px;
    font-family: 'Manrope', sans-serif;
    font-size: 12px;
    font-weight: 400;
    background: #F2F4FF;
    border: 1px solid #ECEEFF;
    color: rgba(0,0,0,0.5);
}

.vacancy-modal-salary {
    font-family: 'Manrope', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #000000;
    margin: 0;
}

.vacancy-modal-content {
    flex: 1;
    overflow-y: auto;
    padding: 24px 32px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.vacancy-modal-content::-webkit-scrollbar {
    width: 6px;
}

.vacancy-modal-content::-webkit-scrollbar-track {
    background: transparent;
}

.vacancy-modal-content::-webkit-scrollbar-thumb {
    background: #3F3FE6;
    border-radius: 3px;
}

.vacancy-modal-section {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.vacancy-modal-section-title {
    font-family: 'Manrope', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #000000;
    margin: 0;
}

.vacancy-modal-section-text {
    font-family: 'Manrope', sans-serif;
    font-size: 14px;
    line-height: 1.6;
    color: #4A4A4A;
    margin: 0;
}

.vacancy-modal-section-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.vacancy-modal-section-list li {
    font-family: 'Manrope', sans-serif;
    font-size: 14px;
    line-height: 1.6;
    color: #4A4A4A;
    padding: 12px 16px 12px 24px;
    position: relative;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.vacancy-modal-section-list li::before {
    content: "•";
    position: absolute;
    left: 8px;
    color: #3F3FE6;
    font-weight: bold;
    font-size: 18px;
    top: 12px;
}

/* Выделенные пункты с синей рамкой */
.vacancy-modal-section-list li.highlighted {
    border: 1px solid #E0EDFF;
    background: #F8FAFF;
    padding: 12px 16px 12px 24px;
}

.vacancy-modal-section-highlight {
    border: 1px solid #E0EDFF;
    border-radius: 8px;
    padding: 16px;
    background: #F8FAFF;
}

.vacancy-modal-footer {
    padding: 20px 32px;
    border-top: 1px solid #ECEEFF;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 12px;
    flex-shrink: 0;
}

.vacancy-modal-apply-btn {
    background: #3F3FE6;
    color: white;
    border: none;
    border-radius: 12px;
    padding: 14px 32px;
    font-family: 'Manrope', sans-serif;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.2s ease;
    white-space: nowrap;
}

.vacancy-modal-apply-btn:hover {
    background: #3333C0;
}

.vacancy-modal-apply-btn:disabled,
.vacancy-modal-apply-btn.invited {
    background: rgba(0,0,0,0.3);
    cursor: default;
}

.vacancy-modal-apply-btn:disabled:hover,
.vacancy-modal-apply-btn.invited:hover {
    background: rgba(0,0,0,0.3);
}

.vacancy-modal-favorite-btn {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: #FFE5F0;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.vacancy-modal-favorite-btn:hover {
    background: #FFD6E8;
}

.vacancy-modal-favorite-btn.active {
    background: #FF6B6B;
}

.vacancy-modal-favorite-btn svg {
    width: 24px;
    height: 24px;
    color: #FF6B6B;
    transition: all 0.2s ease;
}

.vacancy-modal-favorite-btn.active svg {
    color: #FFFFFF;
    fill: #FFFFFF;
}

/* Responsive для модального окна */
@media (max-width: 700px) {
    .vacancy-modal {
        max-width: 100%;
        max-height: 95vh;
        border-radius: 16px 16px 0 0;
        margin-top: auto;
    }
    
    .vacancy-modal-header {
        padding: 24px 20px 20px 20px;
    }
    
    .vacancy-modal-content {
        padding: 20px;
    }
    
    .vacancy-modal-footer {
        padding: 16px 20px;
    }
    
    .vacancy-modal-title {
        font-size: 20px;
    }
}

/* =============================================
   AVATAR KNOWLEDGE PANEL — база знаний для аватара
   ============================================= */
/* =============================================
   AVATAR KNOWLEDGE PANEL — База знаний аватара
   ============================================= */

#avatar-knowledge-panel {
    display: flex;
    flex-direction: column;
}

/* Header */
.ak-header {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px 24px 16px;
    flex-shrink: 0;
}

.ak-back {
    width: 40px;
    height: 27px;
    border: 2.5px solid #ECEEFF;
    border-radius: 20px;
    background: #FFFFFF;
    color: #3F3FE6;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: border-color 0.2s, background 0.2s;
    margin-top: 4px;
}

.ak-back:hover {
    border-color: #B7BEFF;
    background: #F8F9FC;
}

.ak-title-group {
    flex: 1;
    min-width: 0;
}

.ak-title {
    font-family: 'CenturyGothicBold', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: #000;
    margin: 0;
}

.ak-subtitle {
    font-family: 'Manrope', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #000;
    margin: 4px 0 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* Scrollable body */
.ak-body {
    flex: 1;
    overflow-y: auto;
    padding: 0 24px 20px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.ak-body::-webkit-scrollbar { width: 6px; }
.ak-body::-webkit-scrollbar-track { background: #ECEEFF; border-radius: 10px; margin: 8px 0; }
.ak-body::-webkit-scrollbar-thumb { background: #B8B9F7; border-radius: 10px; }

/* Warning banner */
.ak-warning {
    background: rgba(242, 244, 255, 0.8);
    border-radius: 15px;
    padding: 16px 20px;
    flex-shrink: 0;
}

.ak-warning.hidden {
    display: none;
}

.ak-warning-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
}

.ak-warning-icon {
    flex-shrink: 0;
}

.ak-warning-title {
    font-family: 'Manrope', sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: #000;
    flex: 1;
}

.ak-warning-close {
    background: none;
    border: none;
    font-size: 22px;
    color: rgba(0, 0, 0, 0.3);
    cursor: pointer;
    padding: 0 4px;
    line-height: 1;
    transition: color 0.2s;
}

.ak-warning-close:hover {
    color: rgba(0, 0, 0, 0.6);
}

.ak-warning-text {
    font-family: 'Manrope', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #000;
    line-height: 1.5;
    margin: 0;
}

/* Section */
.ak-section {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.ak-section-title {
    font-family: 'Manrope', sans-serif;
    font-size: 17px;
    font-weight: 600;
    color: #000;
    margin: 0;
}

.ak-section-hint {
    font-family: 'Manrope', sans-serif;
    font-size: 13px;
    font-weight: 400;
    color: rgba(0, 0, 0, 0.5);
    margin: 0;
    line-height: 1.4;
}

.ak-textarea {
    width: 100%;
    min-height: 72px;
    padding: 12px 16px;
    font-size: 14px;
    font-family: 'Manrope', sans-serif;
    font-weight: 500;
    line-height: 1.5;
    color: #000;
    border: none;
    border-radius: 15px;
    box-shadow: 0 0 6px rgba(69, 22, 200, 0.17);
    resize: vertical;
    box-sizing: border-box;
    background: #FFFFFF;
    transition: box-shadow 0.2s;
    margin-top: 4px;
}

.ak-textarea::placeholder {
    color: rgba(0, 0, 0, 0.4);
    font-weight: 500;
}

.ak-textarea:focus {
    outline: none;
    box-shadow: 0 0 6px rgba(69, 22, 200, 0.3);
}

/* Footer */
.ak-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 24px 16px;
    flex-shrink: 0;
    border-top: 2px solid #ECEEFF;
}

.ak-char-count {
    font-family: 'Manrope', sans-serif;
    font-size: 13px;
    color: rgba(0, 0, 0, 0.3);
}

.ak-save-btn {
    padding: 8px 24px;
    background: #3F3FE6;
    color: #FFFFFF;
    border: none;
    border-radius: 10px;
    font-family: 'Manrope', sans-serif;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s, box-shadow 0.2s;
}

.ak-save-btn:hover {
    background: #3333C0;
    box-shadow: 0 4px 12px rgba(63, 63, 230, 0.25);
}

.ak-save-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}
.vacancy-panel-details-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* =============================================
   TAB TOGGLE — переключатель Отклик / Поиск
   ============================================= */

.cp-tab-toggle {
    display: flex;
    border: 1.5px solid #E0E0E0;
    border-radius: 24px;
    overflow: hidden;
    flex-shrink: 0;
    margin-left: 8px;
}

.cp-tab {
    padding: 8px 24px;
    border: none;
    background: transparent;
    color: #888;
    font-size: 0.88em;
    font-weight: 600;
    cursor: pointer;
    font-family: inherit;
    transition: background 0.15s, color 0.15s;
    position: relative;
}

.cp-tab:hover:not(.cp-tab--active) {
    color: #555;
}

.cp-tab--active {
    background: #fff;
    color: #1a1a2e;
    border: 1.5px solid #1a1a2e;
    border-radius: 24px;
    margin: -1.5px;
}
