* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Slide-specific CSS variables */
:root {
    --bg-dark: #0d0d1a;
    --bg-card: rgba(255, 255, 255, 0.03);
    --accent-purple: #a855f7;
    --accent-pink: #ec4899;
    --accent-blue: #3b82f6;
    --accent-green: #10b981;
    --accent-orange: #f59e0b;
    --text-primary: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.6);
    --border-subtle: rgba(255, 255, 255, 0.08);
    --sidebar-accent: #3479FF;
    --sidebar-border: #EEEEEE;
}

/* Sidebar layout inherited from shared-sidebar-layout.css */

/* Custom toggle icon stroke color */
.sidebar-toggle-btn .toggle-icon {
    stroke: white;
}

.tab-nav {
    display: flex;
    gap: 5px;
    background: #f5f5f5;
    padding: 4px;
    border-radius: 8px;
}

.tab-btn {
    flex: 1;
    padding: 7px 10px;
    border: none;
    background: transparent;
    border-radius: 6px;
    font-size: 0.65rem;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
    color: #888;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
}

.tab-btn:hover {
    color: #666;
    background: rgba(255, 255, 255, 0.5);
}

.tab-btn.active {
    background: white;
    color: #3379FF;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.tab-content {
    display: none;
    flex-direction: column;
    gap: 14px;
}

.tab-content.active {
    display: flex;
}

.section-header {
    font-size: 0.73125rem;
    font-weight: 700;
    color: var(--sidebar-accent);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 2px;
    padding-bottom: 2px;
    padding-left: 2px;
}

.section-header .icon {
    font-size: 0.975rem;
    position: relative;
    top: 1px;
}

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

/* Main content layout inherited from shared-sidebar-layout.css */
/* Additional main-content styles specific to this slide */
.main-content {
    padding: 0;
    overflow-y: auto;
    height: 100vh;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.widgets-layout {
    max-width: 1400px;
    margin: 0 auto 30px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.widget {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 20px;
    padding: 25px;
}

.widget h2 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: var(--accent-purple);
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
}


.control-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
}

.sidebar .control-grid {
    grid-template-columns: 1fr;
    gap: 12px;
}

.control-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}


.sidebar .control-group label {
    font-size: 0.75rem;
    color: #666666;
    font-weight: 600;
}


.control-group label {
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.control-group input {
    padding: 10px 15px;
    border-radius: 10px;
    border: 1px solid var(--border-subtle);
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-primary);
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    text-align: center;
    box-sizing: border-box;
}


.control-group select {
    padding: 10px 35px 10px 15px;
    border-radius: 10px;
    border: 1px solid var(--border-subtle);
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-primary);
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    text-align: center;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='rgba(255,255,255,0.6)' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 8px center;
    background-size: 20px;
    cursor: pointer;
    box-sizing: border-box;
}

.sidebar .control-group select,
.sidebar .stepper-row select {
    border: 2px solid var(--sidebar-border);
    background: #fafafa;
    color: #333;
    height: 44px;
    border-radius: 10px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    padding: 0 12px;
    width: 100%;
    text-align: center;
    background-image: none;
    appearance: none;
}

.sidebar .control-group select:hover,
.sidebar .stepper-row select:hover {
    background: #fff;
    border-color: var(--sidebar-accent);
}

.control-group input:focus,
.control-group select:focus {
    outline: none;
    border-color: var(--accent-purple);
    background: rgba(255, 255, 255, 0.08);
}

.sidebar .control-group input:focus,
.sidebar .control-group select:focus {
    border-color: var(--sidebar-accent);
    background: #fff;
}

.control-group select:focus {
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='rgba(168,85,247,1)' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
}

.sidebar .control-group select:focus {
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='rgba(52,121,255,1)' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
}

.control-group select:hover {
    background: rgba(255, 255, 255, 0.08);
}

/* Shared dropdown overrides for number line */
.number-line-dropdown {
    width: 80px;
    flex-shrink: 0;
}

.number-line-dropdown.is-wide {
    width: 100%;
    flex: 1;
}

.number-line-trigger,
.number-line-dropdown .style-trigger {
    width: 100%;
    min-height: 44px;
    padding: 0 18px 0 8px;
    border-radius: 10px;
    border: 1px solid var(--border-subtle);
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-primary);
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    user-select: none;
    position: relative;
    box-shadow: none;
    transform: none;
}

.sidebar .number-line-trigger,
.sidebar .number-line-dropdown .style-trigger {
    border: 2px solid var(--sidebar-border);
    background: #fafafa;
    color: #333;
}

.number-line-trigger::after {
    content: '';
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 6px solid rgba(255, 255, 255, 0.6);
    transition: all 0.3s ease;
}

.sidebar .number-line-trigger::after {
    border-top-color: rgba(52, 121, 255, 0.8);
}

.number-line-trigger:hover,
.number-line-dropdown .style-trigger:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--accent-purple);
    transform: none;
    box-shadow: none;
}

.sidebar .number-line-trigger:hover,
.sidebar .number-line-dropdown .style-trigger:hover {
    background: #fff;
    border-color: var(--sidebar-accent);
}

.number-line-dropdown.open .number-line-trigger,
.number-line-dropdown.open .style-trigger {
    border-color: var(--accent-purple);
    background: rgba(255, 255, 255, 0.08);
}

.sidebar .number-line-dropdown.open .number-line-trigger,
.sidebar .number-line-dropdown.open .style-trigger {
    border-color: var(--sidebar-accent);
    background: #fff;
}

.number-line-dropdown.open .number-line-trigger::after {
    border-top-color: var(--accent-purple);
    transform: translateY(-50%) rotate(180deg);
}

.number-line-menu,
.number-line-dropdown .style-menu {
    position: absolute;
    top: calc(100% + 5px);
    left: 0;
    right: 0;
    background: rgba(20, 20, 35, 0.98);
    border: 1px solid var(--accent-purple);
    border-radius: 10px;
    padding: 5px;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(168, 85, 247, 0.3);
    backdrop-filter: blur(10px);
    flex-direction: column;
}

.sidebar .number-line-menu,
.sidebar .number-line-dropdown .style-menu {
    background: #fff;
    border: 1px solid var(--sidebar-accent);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.15);
}

.number-line-dropdown.open .number-line-menu,
.number-line-dropdown.open .style-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    display: flex;
}

.number-line-option,
.number-line-dropdown .style-option {
    padding: 10px;
    min-height: 42px;
    text-align: center;
    cursor: pointer;
    border-radius: 8px;
    transition: all 0.2s ease;
    font-size: 1.1rem;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    background: transparent;
}

.sidebar .number-line-option,
.sidebar .number-line-dropdown .style-option {
    color: #333;
}

.number-line-option:hover,
.number-line-dropdown .style-option:hover {
    background: rgba(168, 85, 247, 0.2);
}

.sidebar .number-line-option:hover,
.sidebar .number-line-dropdown .style-option:hover {
    background: #eef2ff;
}

.number-line-option.selected,
.number-line-dropdown .style-option.selected {
    background: rgba(168, 85, 247, 0.3);
    color: var(--accent-purple);
}

.sidebar .number-line-option.selected,
.sidebar .number-line-dropdown .style-option.selected {
    background: #e6efff;
    color: var(--sidebar-accent);
}

.arrow-options {
    display: flex;
    gap: 12px;
    margin-top: 8px;
}

.arrow-toggle {
    flex: 1;
    padding: 12px 20px;
    border-radius: 10px;
    border: 3px solid var(--border-subtle);
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-primary);
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-sizing: border-box;
}

.sidebar .arrow-toggle {
    border: 2px solid var(--sidebar-border);
    background: #fafafa;
    color: #333;
}

#infiniteRightToggle {
    flex-direction: row-reverse;
}

.arrow-toggle:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--accent-purple);
    transform: translateY(-2px);
}

.sidebar .arrow-toggle:hover {
    background: #f0f4ff;
    border-color: var(--sidebar-accent);
}

.arrow-toggle.active {
    border-color: var(--accent-purple);
}

.sidebar .arrow-toggle.active {
    border-color: var(--sidebar-accent);
    background: #eef4ff;
    color: var(--sidebar-accent);
}

.arrow-toggle-icon {
    font-size: 1.2rem;
    line-height: 1;
}

.arrow-toggle-label {
    font-size: 0.95rem;
}

button:hover:not(.save-button):not(.modal-btn):not(.sidebar-toggle-btn) {
    background: rgba(255, 255, 255, 0.1) !important;
    border-color: var(--accent-purple) !important;
    transform: translateY(-2px);
}

.sidebar button:hover:not(.save-button):not(.modal-btn):not(.sidebar-toggle-btn) {
    background: #f0f4ff !important;
    border-color: var(--sidebar-accent) !important;
}

button.active {
    border-color: var(--accent-purple) !important;
}

.sidebar button.active {
    border-color: var(--sidebar-accent) !important;
}

.number-lines-container {
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.number-line-wrapper {
    background: transparent;
    border: none;
    border-radius: 0;
    padding: 0 0 17px 0;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow-x: hidden;
    box-shadow: none;
    width: 100%;
}

.number-line-wrapper.scrollable {
    overflow-x: auto;
    justify-content: flex-start;
}

.number-line-wrapper.scrollable .number-line-svg {
    flex: 0 0 auto;
}

svg:not(.save-button svg):not(.session-action-btn svg):not(.session-menu-btn svg):not(.menu-icon):not(.toggle-icon) {
    padding-bottom: 12px;
}

.save-button svg {
    padding-bottom: 0;
    width: 20px;
    height: 20px;
}

.session-action-btn svg {
    padding-bottom: 0;
}

.number-line-svg {
    width: 100%;
    height: auto;
    overflow: visible;
    padding-bottom: 6px;
    display: block;
}

.line {
    stroke: rgba(255, 255, 255, 0.7);
    stroke-width: 6;
}

.tick {
    stroke: rgba(255, 255, 255, 0.8);
    stroke-width: 5;
}

.tick-label {
    fill: rgba(255, 255, 255, 0.9);
    font-family: 'Poppins', sans-serif;
    font-size: 32px;
    font-weight: 500;
}

.arrow {
    fill: var(--accent-purple);
}

.counting-dot {
    fill: var(--accent-blue);
    cursor: pointer;
    transition: all 0.3s ease;
}

.counting-dot.addition {
    fill: var(--accent-green);
}

.counting-dot.subtraction {
    fill: var(--accent-orange);
}

.counting-dot:hover {
    r: 24;
}

.counting-arc {
    fill: none;
    stroke-width: 5;
    opacity: 0.8;
}

.counting-arc.addition {
    stroke: var(--accent-green);
}

.counting-arc.subtraction {
    stroke: var(--accent-orange);
}

.fraction-segment {
    stroke: var(--accent-pink);
    stroke-width: 5;
}

.fraction-label {
    fill: var(--accent-pink);
    font-family: 'Poppins', sans-serif;
    font-size: 27px;
    font-weight: 600;
}

.inequality-range {
    fill: var(--accent-purple);
    opacity: 0.3;
}

.inequality-point {
    stroke-width: 6;
}

.inequality-point.closed {
    fill: var(--accent-purple);
    stroke: var(--accent-purple);
}

.inequality-point.open {
    fill: #ffffff;
    stroke: var(--accent-purple);
}

.inequality-label {
    fill: #333333;
    font-family: 'Poppins', sans-serif;
    font-size: 35px;
    font-weight: 600;
}

/* Responsive sidebar width breakpoints inherited from shared-sidebar-layout.css */

@media (max-width: 768px) {
    .control-grid {
        grid-template-columns: 1fr;
    }

    .number-line-wrapper {
        padding: 20px;
    }
}

/* ==================== SAVE FEATURE STYLES ==================== */
.saves-section {
    flex: 1;
    display: flex;
    flex-direction: column;
    min-height: 150px;
    overflow: hidden;
}

.sessions-list {
    flex: 1;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding-right: 4px;
    margin-top: 8px;
}

/* Custom scrollbar for sessions list */
.sessions-list::-webkit-scrollbar {
    width: 6px;
}

.sessions-list::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 3px;
}

.sessions-list::-webkit-scrollbar-thumb {
    background: rgba(51, 121, 255, 0.3);
    border-radius: 3px;
}

.empty-state {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex: 1;
    padding: 24px 16px;
    gap: 8px;
}

.empty-state svg {
    width: 40px;
    height: 40px;
    color: #CCCCCC;
    opacity: 0.5;
}

.empty-state span {
    font-size: 13px;
    color: #999999;
    text-align: center;
}

.session-tile {
    display: flex;
    align-items: center;
    padding: 8px;
    background: rgba(0, 0, 0, 0.05);
    border-radius: 10px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: all 0.2s ease;
    gap: 12px;
}

.session-tile:hover {
    background: rgba(34, 197, 94, 0.12);
    border-color: rgba(34, 197, 94, 0.35);
}

.session-tile.active {
    background: rgba(34, 197, 94, 0.1);
    border-color: rgba(34, 197, 94, 0.5);
    box-shadow: 0 0 10px rgba(34, 197, 94, 0.1);
}

.session-thumbnail {
    width: 48px;
    height: 48px;
    background: #fff;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    flex-shrink: 0;
    border: 1px solid #eee;
}

.session-info {
    flex: 1;
    min-width: 0;
}

.session-name {
    font-weight: 500;
    font-size: 0.9rem;
    color: #333;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 2px;
}

.session-meta {
    font-size: 0.75rem;
    color: rgba(51, 51, 51, 0.5);
    display: flex;
    gap: 8px;
}

.session-actions {
    display: flex;
    gap: 4px;
    opacity: 0;
    transition: opacity 0.2s;
    flex-shrink: 0;
    position: relative;
}

.session-tile:hover .session-actions {
    opacity: 1;
}

.session-action-btn {
    width: 24px;
    height: 24px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.1);
    border: none;
    border-radius: 4px;
    color: rgba(51, 51, 51, 0.7);
    cursor: pointer;
    transition: all 0.2s;
}

.session-action-btn:hover {
    background: rgba(0, 0, 0, 0.2);
    color: #000;
}

.session-action-btn.delete-btn:hover {
    background: rgba(239, 68, 68, 0.2);
    color: #ef4444;
}

.session-menu-btn {
    width: 24px;
    height: 24px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.06);
    border: none;
    border-radius: 4px;
    color: rgba(51, 51, 51, 0.6);
    cursor: pointer;
    transition: all 0.2s;
}

.session-menu-btn:hover {
    background: rgba(0, 0, 0, 0.14);
    color: #111111;
}

.session-menu {
    position: absolute;
    right: 0;
    top: calc(100% + 6px);
    display: none;
    flex-direction: column;
    gap: 2px;
    min-width: 150px;
    padding: 6px;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
    z-index: 5;
}

.session-menu.open {
    display: flex;
}

.session-menu-item {
    display: flex;
    align-items: center;
    gap: 8px;
    width: 100%;
    padding: 6px 8px;
    background: transparent;
    border: none;
    border-radius: 8px;
    font-size: 0.75rem;
    color: #333333;
    cursor: pointer;
    text-align: left;
    transition: background 0.2s ease, color 0.2s ease;
}

.session-menu-item:hover {
    background: rgba(0, 0, 0, 0.06);
}

.session-menu-item.remove {
    color: #ef4444;
}

.session-menu-item.remove:hover {
    background: rgba(239, 68, 68, 0.12);
}

.session-tile.is-hidden {
    opacity: 0.5;
}

.session-tile.is-hidden .session-thumbnail {
    filter: grayscale(0.4);
}

.save-button {
    width: 100%;
    padding: 12px;
    background: linear-gradient(135deg, var(--sidebar-accent) 0%, #2563eb 100%);
    border: none;
    border-radius: 12px;
    color: white;
    font-weight: 600;
    font-family: inherit;
    font-size: 0.95rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.2s;
    box-shadow: 0 4px 12px rgba(52, 121, 255, 0.3);
    margin-top: auto;
}

.save-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(52, 121, 255, 0.4);
    filter: brightness(1.1);
}

.save-button svg path,
.save-button svg polyline {
    stroke: white;
}

.save-button:active {
    transform: translateY(0);
}

/* Modal Overlay */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease, visibility 0.2s ease;
}

.modal-overlay.visible {
    opacity: 1;
    visibility: visible;
}

/* Modal Dialog */
.modal-dialog {
    width: 90%;
    max-width: 400px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    border-radius: 12px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25), 0 0 0 1px rgba(255, 255, 255, 0.1);
    transform: scale(0.9) translateY(20px);
    transition: transform 0.2s ease;
    overflow: hidden;
    padding: 20px 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.modal-overlay.visible .modal-dialog {
    transform: scale(1) translateY(0);
}

.modal-title {
    font-size: 18px;
    font-weight: 600;
    color: #333333;
    margin: 0;
}

.modal-input {
    width: 100%;
    padding: 12px 14px;
    border: 2px solid #E0E0E0;
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    color: #333333;
    background: #FFFFFF;
    transition: border-color 0.15s ease, box-shadow 0.15s ease;
    box-sizing: border-box;
}

.modal-input:focus {
    outline: none;
    border-color: var(--sidebar-accent);
    box-shadow: 0 0 0 3px rgba(52, 121, 255, 0.15);
}

.modal-input::placeholder {
    color: #999999;
}

.modal-message {
    font-size: 14px;
    color: #666666;
    line-height: 1.5;
}

.modal-actions {
    display: flex;
    gap: 12px;
    justify-content: flex-end;
    margin-top: 4px;
}

/* Modal Buttons */
.modal-btn {
    padding: 10px 20px;
    border: none;
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.15s ease;
}

.modal-btn-cancel {
    background: #F5F5F5;
    color: #666666;
}

.modal-btn-cancel:hover {
    background: #E8E8E8;
}

.modal-btn-confirm {
    background: linear-gradient(135deg, var(--sidebar-accent) 0%, #2563eb 100%);
    color: #fff;
    box-shadow: 0 2px 8px rgba(52, 121, 255, 0.3);
}

.modal-btn-confirm:hover {
    box-shadow: 0 4px 12px rgba(52, 121, 255, 0.4);
    transform: translateY(-1px);
}

.modal-btn-danger {
    background: linear-gradient(135deg, #EF4444 0%, #DC2626 100%);
    color: #fff;
    box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3);
}

.modal-btn-danger:hover {
    box-shadow: 0 4px 12px rgba(239, 68, 68, 0.4);
    transform: translateY(-1px);
}
