.tutorial li.label, .notice li.label {
    font-size: 14px;
    line-height: 1.35;
    padding: 12px 0;
}
.tutorial .modal-content, .notice .modal-content {
    position: relative;
}
.tutorial .modal-content .footer {
    bottom : 8px;
    right : 8px;
    position: absolute;
}

.pulse {
    animation: pulse 3s ease-in-out infinite;
    position: relative;
    z-index: 10;
}

@keyframes pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(50, 159, 255, 0.7); }
    50% { box-shadow: 0 0 0 8px rgba(255, 200, 50, 0); }
}

.notification-drawer {
    position: fixed;
    inset: unset;
    margin: 0;
    padding: 0;
    width: 380px;
    max-height: 420px;
}

.drawer-header {
    padding: 10px 14px;
    border-bottom: 1px solid var(--border-color, #444);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: bold;
    font-size: 13px;
}

.drawer-header .mark-read-link, .drawer-header .delete-read-link {
    font-size: 11px;
    font-weight: normal;
    cursor: pointer;
    color: var(--link-color, #7ec8e3);
}

#notificationBell {
    display: inline-flex;
    align-items: center;
}

.notification-item {
    padding: 8px 14px;
    border-bottom: var(--button-border);
    font-size: 13px;
    display: flex;
    gap: 8px;
    align-items: flex-start;
}

.notification-item.unread {
    font-weight: bold;
}

.notification-icon {
    flex-shrink: 0;
    width: 16px;
    text-align: center;
}

.notification-message {
    flex: 1;
    word-break: break-word;
}

.notification-empty {
    padding: 16px 14px;
    color: var(--text-color);
    font-size: 13px;
    text-align: center;
}

/* Airline Switcher */
.airline-switcher-dropdown {
    position: fixed;
    inset: unset;
    margin: 0;
    padding: 0;
    width: 240px;
    max-height: 320px;
}

.switcher-item {
    padding: 8px 14px;
    border-bottom: var(--button-border);
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.switcher-item.active {
    opacity: 0.6;
}

.switcher-item.clickable:hover {
    background: var(--background-2, #252545);
}

.switcher-create {
    color: var(--link-color, #7ec8e3);
}

