/**
 * ===================================
 * YOUPRO HEADER STYLES (FIXED)
 * ===================================
 */

/* CSS Variables */
:root {
    --yp-header-height: 56px;
    --yp-chips-height: 56px;
    --yp-sidebar-width: 240px;
    --yp-sidebar-mini-width: 72px;
    --yp-mobile-nav-height: 56px;
    
    /* Light Mode Colors */
    --yp-bg-primary: #fff;
    --yp-bg-secondary: #f9f9f9;
    --yp-bg-hover: #f2f2f2;
    --yp-text-primary: #0f0f0f;
    --yp-text-secondary: #606060;
    --yp-border: #e5e5e5;
    --yp-primary: #065fd4;
    --yp-button-bg: #065fd4;
    --yp-button-text: #fff;
    --yp-red: #cc0000;
    --yp-header-shadow: 0 1px 0 rgba(0,0,0,0.1);
}

/* Dark Mode */
@media (prefers-color-scheme: dark) {
    :root {
        --yp-bg-primary: #0f0f0f;
        --yp-bg-secondary: #212121;
        --yp-bg-hover: #3f3f3f;
        --yp-text-primary: #f1f1f1;
        --yp-text-secondary: #aaa;
        --yp-border: #3f3f3f;
        --yp-header-shadow: 0 1px 0 rgba(255,255,255,0.1);
    }
}

/* Reset & Base */
* {
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    font-family: "Roboto", "Arial", sans-serif;
    background: var(--yp-bg-primary);
    color: var(--yp-text-primary);
    overflow-x: hidden;
}

.yp-site {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* ===================================
   MAIN HEADER (FIXED)
   =================================== */
.yp-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--yp-header-height);
    background: var(--yp-bg-primary);
    z-index: 2000;
    box-shadow: var(--yp-header-shadow);
    transition: transform 0.3s ease;
}

.yp-header.yp-header-hidden {
    transform: translateY(-100%);
}

.yp-header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    padding: 0 16px;
    max-width: 100%;
    margin: 0 auto;
}

/* Header Left */
.yp-header-left {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-shrink: 0;
    min-width: 0;
}

.yp-menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: none;
    background: transparent;
    border-radius: 50%;
    cursor: pointer;
    color: var(--yp-text-primary);
    transition: background 0.2s;
    flex-shrink: 0;
}

.yp-menu-toggle:hover {
    background: var(--yp-bg-hover);
}

.yp-logo {
    display: flex;
    align-items: center;
    gap: 4px;
    text-decoration: none;
    color: var(--yp-text-primary);
    flex-shrink: 0;
}

.yp-logo svg {
    flex-shrink: 0;
}

.yp-logo-text {
    font-size: 20px;
    font-weight: 500;
    letter-spacing: -0.5px;
}

/* Header Center - Search */
.yp-header-center {
    display: flex;
    align-items: center;
    gap: 8px;
    flex: 1;
    max-width: 640px;
    margin: 0 40px;
}

.yp-search-form {
    flex: 1;
    max-width: 100%;
}

.yp-search-container {
    display: flex;
    align-items: center;
    border: 1px solid var(--yp-border);
    border-radius: 40px;
    overflow: hidden;
    background: var(--yp-bg-primary);
    transition: border-color 0.2s;
}

.yp-search-form.yp-search-focused .yp-search-container {
    border-color: var(--yp-primary);
}

.yp-search-input {
    flex: 1;
    height: 40px;
    padding: 0 16px;
    border: none;
    background: transparent;
    color: var(--yp-text-primary);
    font-size: 16px;
    font-family: inherit;
    outline: none;
}

.yp-search-input::placeholder {
    color: var(--yp-text-secondary);
}

.yp-search-submit {
    width: 64px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    background: var(--yp-bg-secondary);
    border-left: 1px solid var(--yp-border);
    cursor: pointer;
    color: var(--yp-text-primary);
    transition: background 0.2s;
    flex-shrink: 0;
}

.yp-search-submit:hover {
    background: var(--yp-bg-hover);
}

.yp-voice-search {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    background: var(--yp-bg-secondary);
    border-radius: 50%;
    cursor: pointer;
    color: var(--yp-text-primary);
    transition: background 0.2s;
    flex-shrink: 0;
}

.yp-voice-search:hover {
    background: var(--yp-bg-hover);
}

/* Header Right */
.yp-header-right {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

.yp-icon-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    width: 40px;
    height: 40px;
    border: none;
    background: transparent;
    border-radius: 50%;
    cursor: pointer;
    color: var(--yp-text-primary);
    text-decoration: none;
    transition: background 0.2s;
    position: relative;
    flex-shrink: 0;
}

.yp-icon-btn:hover {
    background: var(--yp-bg-hover);
}

.yp-notification-btn {
    position: relative;
}

.yp-notification-badge {
    position: absolute;
    top: 4px;
    right: 4px;
    min-width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--yp-red);
    color: #fff;
    font-size: 11px;
    font-weight: 500;
    border-radius: 9px;
    padding: 0 4px;
}

.yp-signin-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border: 1px solid var(--yp-border);
    border-radius: 18px;
    background: transparent;
    color: var(--yp-primary);
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s;
    white-space: nowrap;
}

.yp-signin-btn:hover {
    background: rgba(6, 95, 212, 0.1);
    border-color: var(--yp-primary);
}

/* User Menu */
.yp-user-menu-container {
    position: relative;
}

.yp-user-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    overflow: hidden;
    border: none;
    background: transparent;
    cursor: pointer;
    padding: 0;
}

.yp-user-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.yp-user-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    width: 300px;
    background: var(--yp-bg-primary);
    border: 1px solid var(--yp-border);
    border-radius: 12px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.2s ease;
    z-index: 3000;
}

.yp-user-dropdown.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.yp-user-dropdown-header {
    display: flex;
    gap: 12px;
    padding: 16px;
    border-bottom: 1px solid var(--yp-border);
}

.yp-user-dropdown-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.yp-user-dropdown-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.yp-user-dropdown-info {
    flex: 1;
    min-width: 0;
}

.yp-user-dropdown-name {
    font-size: 16px;
    font-weight: 500;
    color: var(--yp-text-primary);
    margin-bottom: 2px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.yp-user-dropdown-email {
    font-size: 14px;
    color: var(--yp-text-secondary);
    margin-bottom: 8px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.yp-user-dropdown-channel {
    font-size: 14px;
    color: var(--yp-primary);
    text-decoration: none;
    display: inline-block;
}

.yp-user-dropdown-channel:hover {
    text-decoration: underline;
}

.yp-user-dropdown-divider {
    height: 1px;
    background: var(--yp-border);
}

.yp-user-dropdown-menu {
    padding: 8px 0;
}

.yp-dropdown-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 10px 16px;
    color: var(--yp-text-primary);
    text-decoration: none;
    font-size: 14px;
    transition: background 0.2s;
}

.yp-dropdown-item:hover {
    background: var(--yp-bg-hover);
}

.yp-dropdown-item svg {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    color: var(--yp-text-primary);
}

/* ===================================
   CHIPS BAR (CATEGORIES) - FIXED
   =================================== */
.yp-chips-bar {
    position: fixed;
    top: var(--yp-header-height);
    left: 0;
    right: 0;
    height: var(--yp-chips-height);
    background: var(--yp-bg-primary);
    border-bottom: 1px solid var(--yp-border);
    z-index: 1900;
    transition: transform 0.3s ease;
	margin-left: var(--yp-sidebar-width);
}

.yp-chips-bar.yp-chips-hidden {
    transform: translateY(-100%);
}

.yp-chips-container {
    position: relative;
    height: 100%;
    max-width: 100%;
    padding: 0 12px;
    margin-left: 0;
    transition: margin-left 0.3s ease;
}

.yp-chips-list {
    display: flex;
    align-items: center;
    gap: 12px;
    height: 100%;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 0 12px;
}

.yp-chips-list::-webkit-scrollbar {
    display: none;
}

.yp-chip {
    display: inline-flex;
    align-items: center;
    padding: 0 12px;
    height: 32px;
    background: var(--yp-bg-secondary);
    border-radius: 8px;
    color: var(--yp-text-primary);
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    white-space: nowrap;
    transition: all 0.2s;
    flex-shrink: 0;
}

.yp-chip:hover {
    background: var(--yp-bg-hover);
}

.yp-chip.active {
    background: var(--yp-text-primary);
    color: var(--yp-bg-primary);
}

.yp-chips-scroll-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--yp-bg-primary);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    z-index: 2;
    transition: background 0.2s;
}

.yp-chips-scroll-btn:hover {
    background: var(--yp-bg-hover);
}

.yp-chips-scroll-left {
    left: 8px;
    display: none;
}

.yp-chips-scroll-right {
    right: 8px;
    display: none;
}

/* ===================================
   SIDEBAR (FIXED)
   =================================== */
.yp-sidebar {
    position: fixed;
    top: var(--yp-header-height);
    left: -100%;
    width: var(--yp-sidebar-width);
    height: calc(100vh - var(--yp-header-height));
    background: var(--yp-bg-primary);
    overflow-y: auto;
    overflow-x: hidden;
    z-index: 1800;
    transition: left 0.3s ease;
    scrollbar-width: thin;
    scrollbar-color: var(--yp-border) transparent;
}

.yp-sidebar::-webkit-scrollbar {
    width: 8px;
}

.yp-sidebar::-webkit-scrollbar-track {
    background: transparent;
}

.yp-sidebar::-webkit-scrollbar-thumb {
    background: var(--yp-border);
    border-radius: 4px;
}

.yp-sidebar.active {
    left: 0;
}

.yp-sidebar-content {
    padding: 12px 0;
}

.yp-sidebar-section {
    padding: 8px 0;
}

.yp-sidebar-title {
    padding: 8px 24px;
    font-size: 14px;
    font-weight: 500;
    color: var(--yp-text-primary);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.yp-sidebar-item {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 10px 24px;
    color: var(--yp-text-primary);
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
    transition: background 0.2s;
    position: relative;
}

.yp-sidebar-item:hover {
    background: var(--yp-bg-hover);
}

.yp-sidebar-item.active {
    background: var(--yp-bg-hover);
    font-weight: 500;
}

.yp-sidebar-item.active::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--yp-red);
}

.yp-sidebar-item svg {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.yp-sidebar-channel {
    gap: 16px;
}

.yp-sidebar-channel-avatar {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.yp-sidebar-channel-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.yp-sidebar-divider {
    height: 1px;
    background: var(--yp-border);
    margin: 12px 0;
}

.yp-sidebar-promo {
    padding: 12px 24px;
}

.yp-sidebar-promo p {
    font-size: 14px;
    color: var(--yp-text-secondary);
    line-height: 1.6;
    margin: 0 0 16px;
}

.yp-sidebar-signin-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border: 1px solid var(--yp-border);
    border-radius: 18px;
    background: transparent;
    color: var(--yp-primary);
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s;
}

.yp-sidebar-signin-btn:hover {
    background: rgba(6, 95, 212, 0.1);
}

.yp-sidebar-footer {
    padding: 16px 24px;
}

.yp-sidebar-footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 4px 8px;
    margin-bottom: 8px;
}

.yp-sidebar-footer-links a {
    color: var(--yp-text-secondary);
    font-size: 13px;
    text-decoration: none;
    white-space: nowrap;
}

.yp-sidebar-footer-links a:hover {
    color: var(--yp-text-primary);
}

.yp-sidebar-copyright {
    font-size: 12px;
    color: var(--yp-text-secondary);
    line-height: 1.8;
    margin-top: 12px;
}

/* ===================================
   MOBILE BOTTOM NAVIGATION
   =================================== */
.yp-mobile-bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: var(--yp-mobile-nav-height);
    background: var(--yp-bg-primary);
    border-top: 1px solid var(--yp-border);
    display: none;
    z-index: 2000;
}

.yp-mobile-nav-list {
    display: flex;
    height: 100%;
}

.yp-mobile-nav-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    color: var(--yp-text-secondary);
    text-decoration: none;
    font-size: 10px;
    font-weight: 500;
    transition: color 0.2s;
}

.yp-mobile-nav-item svg {
    width: 24px;
    height: 24px;
}

.yp-mobile-nav-item.active {
    color: var(--yp-text-primary);
}

.yp-mobile-nav-item:active {
    color: var(--yp-text-primary);
}

.yp-mobile-nav-add {
    margin: -8px 0 0;
}

.yp-mobile-nav-add svg {
    width: 28px;
    height: 28px;
}

/* ===================================
   MAIN CONTENT LAYOUT (FIXED)
   =================================== */
.yp-main-content {
    margin-top: calc(var(--yp-header-height) + var(--yp-chips-height));
    min-height: calc(100vh - var(--yp-header-height) - var(--yp-chips-height));
    padding-bottom: 24px;
    transition: margin-left 0.3s ease;
}

.yp-content-wrapper {
    max-width: 100%;
    margin: 0 auto;
    padding: 24px;
}

body.yp-sidebar-open {
    overflow: hidden;
}

/* ===================================
   RESPONSIVE (FIXED)
   =================================== */

/* Desktop - Show sidebar by default */
@media (min-width: 1313px) {
    .yp-sidebar {
        left: 0;
    }
    
    .yp-main-content {
        margin-left: var(--yp-sidebar-width);
    }
    
    
    .yp-menu-toggle {
        display: none;
    }
    
    .yp-chips-scroll-left,
    .yp-chips-scroll-right {
        display: flex;
    }
}

/* Tablet */
@media (max-width: 1312px) and (min-width: 769px) {
    .yp-chips-scroll-left,
    .yp-chips-scroll-right {
        display: flex;
    }
}

/* Tablet */
@media (max-width: 1024px) {
    .yp-header-center {
        max-width: 400px;
        margin: 0 20px;
    }
    
    .yp-content-wrapper {
        padding: 16px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .yp-header-container {
        padding: 0 8px;
    }
    
    .yp-header-center {
        display: none;
    }
    
    .yp-header-left {
        gap: 8px;
    }
    
    .yp-logo-text {
        font-size: 18px;
    }
    
    /* Chips bar mobile scroll */
    .yp-chips-bar {
        border-bottom: none;
		margin-left: 0 !important;
    }
    
    .yp-chips-container {
        padding: 0;
        margin-left: 0;
    }
    
    .yp-chips-list {
        padding: 0 8px;
        gap: 8px;
    }
    
    .yp-chips-scroll-left,
    .yp-chips-scroll-right {
        display: none !important;
    }
    
    .yp-main-content {
        margin-top: calc(var(--yp-header-height) + var(--yp-chips-height));
        margin-left: 0;
        padding-bottom: calc(var(--yp-mobile-nav-height) + 16px);
    }
    
    .yp-mobile-bottom-nav {
        display: block;
    }
    
    .yp-content-wrapper {
        padding: 12px 8px;
    }
    
    .yp-sidebar {
        width: 280px;
        box-shadow: 2px 0 8px rgba(0, 0, 0, 0.15);
        padding-top: 45px;
        padding-bottom: 45px;
    }
}

@media (max-width: 480px) {
    .yp-logo svg {
        width: 70px;
    }
    
    .yp-content-wrapper {
        padding: 8px;
    }
    
    .yp-chip {
        padding: 0 10px;
        font-size: 13px;
    }
}




/* ===================================
   NOTIFICATION SYSTEM
   =================================== */

/* Notification Container */
.yp-notification-container {
    position: relative;
}

.yp-notification-btn {
    position: relative;
}

.yp-notification-badge {
    position: absolute;
    top: 6px;
    right: 6px;
    min-width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #cc0000;
    color: #fff;
    font-size: 11px;
    font-weight: 500;
    border-radius: 9px;
    padding: 0 5px;
    line-height: 1;
}

/* Notification Toast */
.yp-notification-toast {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    background: rgba(0, 0, 0, 0.9);
    color: #fff;
    padding: 12px 24px;
    border-radius: 24px;
    font-size: 14px;
    z-index: 10000;
    opacity: 0;
    transition: all 0.3s ease;
    pointer-events: none;
}

.yp-notification-toast.show {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

/* Notification Dropdown */
.yp-notification-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    width: 420px;
    max-height: 600px;
    background: var(--yp-bg-primary);
    border: 1px solid var(--yp-border);
    border-radius: 12px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.2s ease;
    z-index: 3000;
    display: flex;
    flex-direction: column;
}

.yp-notification-dropdown.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Notification Header */
.yp-notification-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 16px 12px;
    border-bottom: 1px solid var(--yp-border);
}

.yp-notification-header h3 {
    font-size: 16px;
    font-weight: 500;
    color: var(--yp-text-primary);
    margin: 0;
}

.yp-mark-all-read {
    background: transparent;
    border: none;
    color: var(--yp-primary);
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    padding: 4px 8px;
    border-radius: 4px;
    transition: background 0.2s;
}

.yp-mark-all-read:hover {
    background: var(--yp-bg-hover);
}

/* Notification List */
.yp-notification-list {
    flex: 1;
    overflow-y: auto;
    max-height: 540px;
}

.yp-notification-list::-webkit-scrollbar {
    width: 8px;
}

.yp-notification-list::-webkit-scrollbar-track {
    background: transparent;
}

.yp-notification-list::-webkit-scrollbar-thumb {
    background: var(--yp-border);
    border-radius: 4px;
}

/* Notification Item */
.yp-notif-item {
    display: flex;
    gap: 12px;
    padding: 12px 16px;
    text-decoration: none;
    color: var(--yp-text-primary);
    transition: background 0.2s;
    position: relative;
    align-items: flex-start;
}

.yp-notif-item:hover {
    background: var(--yp-bg-hover);
}

.yp-notif-item.unread {
    background: rgba(6, 95, 212, 0.05);
}

.yp-notif-item.unread:hover {
    background: rgba(6, 95, 212, 0.1);
}

/* Notification Avatar */
.yp-notif-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.yp-notif-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Notification Content */
.yp-notif-content {
    flex: 1;
    min-width: 0;
}

.yp-notif-text {
    font-size: 14px;
    line-height: 1.4;
    color: var(--yp-text-primary);
    margin-bottom: 4px;
}

.yp-notif-text strong {
    font-weight: 500;
}

.yp-notif-video-title {
    color: var(--yp-text-secondary);
}

.yp-notif-comment {
    font-size: 13px;
    color: var(--yp-text-secondary);
    line-height: 1.4;
    margin-bottom: 4px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.yp-notif-time {
    font-size: 12px;
    color: var(--yp-text-secondary);
}

/* Notification Thumbnail */
.yp-notif-thumbnail {
    width: 80px;
    height: 45px;
    border-radius: 4px;
    overflow: hidden;
    flex-shrink: 0;
}

.yp-notif-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Unread Indicator */
.yp-notif-indicator {
    position: absolute;
    top: 50%;
    right: 12px;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background: var(--yp-primary);
    border-radius: 50%;
}

/* Empty State */
.yp-notif-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    text-align: center;
    color: var(--yp-text-secondary);
}

.yp-notif-empty svg {
    margin-bottom: 16px;
}

.yp-notif-empty p {
    font-size: 14px;
    margin: 0;
}

/* Loading State */
.yp-notification-loading {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    color: var(--yp-text-secondary);
    font-size: 14px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .yp-notification-dropdown {
        width: calc(100vw - 32px);
        max-width: 420px;
        right: -16px;
    }
}

@media (max-width: 480px) {
    .yp-notification-dropdown {
        position: fixed;
        top: 56px;
        left: 0;
        right: 0;
        width: 100%;
        max-width: 100%;
        border-radius: 0;
        border-left: 0;
        border-right: 0;
        max-height: calc(100vh - 56px);
    }
}