/* /Modals/LoginModal.razor.rz.scp.css */

.auth-toggle[b-vj4khu8icb] {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

    .auth-toggle button[b-vj4khu8icb] {
        flex: 1;
        padding: 0.6rem;
        border-radius: 6px;
        border: 1px solid #444;
        background: #121212;
        color: white;
        cursor: pointer;
    }

        .auth-toggle button.active[b-vj4khu8icb] {
            background: #4cd137;
            color: black;
            font-weight: 600;
        }

.modal-overlay[b-vj4khu8icb] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    padding: 20px;
}

.modal-content[b-vj4khu8icb] {
    background-color: #121212;
    color: white;
    padding: 1.5rem;
    border-radius: 12px;
    width: 320px;
    max-width: 95vw;
    font-family: sans-serif;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.6);
    position: relative;
}

.login-modal[b-vj4khu8icb] {
    background: #121212;
    color: white;
    padding: 1.5rem;
    border-radius: 12px;
    width: 320px;
    max-width: 95vw;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    box-shadow: 0 8px 30px rgba(0,0,0,0.6);
    position: relative;
}

    .login-modal input[b-vj4khu8icb] {
        padding: 0.6rem;
        border-radius: 6px;
        border: 1px solid #444;
        background-color: #121212;
        color: white;
        width: 100%;
        box-sizing: border-box;
    }

.login-error[b-vj4khu8icb] {
    color: #e74c3c;
    font-size: 0.9rem;
    margin: 0;
    text-align: center;
}

.auth-btn[b-vj4khu8icb] {
    background-color: #4cd137;
    color: black;
    border: none;
    padding: 8px 16px;
    font-size: 0.95rem;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
}

    .auth-btn:hover[b-vj4khu8icb] {
        background-color: #3ab231;
        transform: translateY(-1px);
    }
/* /Pages/Pomodoro.razor.rz.scp.css */
.timer-header[b-0q0b1itnch] {
    position: sticky;
    top: 0px;
    z-index: 20;
    padding: 20px;
    margin-bottom: 20px;
}

.timer-container[b-0q0b1itnch] {
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
    min-height: 100vh;
    color: white;
    font-family: Arial, sans-serif;
}

.timer-tabs[b-0q0b1itnch] {
    position: sticky;
    top: 35px;
    z-index: 100;
    display: flex;
    justify-content: center;
    gap: 1px;
    margin-bottom: 40px;
    background: rgba(0,0,0,0.2);
    border-radius: 8px;
    overflow: hidden;
}

.timer-tab[b-0q0b1itnch] {
    flex: 1;
    padding: 12px 20px;
    background: rgba(255,255,255,0.1);
    border: none;
    color: rgba(255,255,255,0.7);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

    .timer-tab.active[b-0q0b1itnch] {
        background: rgba(255,255,255,0.2);
        color: white;
        font-weight: bold;
    }

    .timer-tab:hover[b-0q0b1itnch] {
        background: rgba(255,255,255,0.15);
    }

.pomodoro-count[b-0q0b1itnch] {
    font-size: 0.8rem;
    opacity: 0.9;
    background: rgba(0,0,0,0.2);
    padding: 2px 6px;
    border-radius: 4px;
}

.timer-display[b-0q0b1itnch] {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
    position: relative;
}

.timer-time[b-0q0b1itnch] {
    font-size: 4rem;
    font-weight: 300;
    margin: 0;
    letter-spacing: 0.1em;
}

.plus-one-btn[b-0q0b1itnch] {
    background: rgba(0,0,0,0.3);
    border: none;
    color: white;
    padding: 6px 10px;
    border-radius: 4px;
    font-size: 0.8rem;
    cursor: pointer;
    transition: all 0.3s ease;
    position: absolute;
    left: 125px;
    top: 50%;
    transform: translateY(-50%);
}

    .plus-one-btn:hover[b-0q0b1itnch] {
        background: rgba(0,0,0,0.5);
    }

.timer-controls[b-0q0b1itnch] {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

/* Primary button styles */
.timer-main-btn[b-0q0b1itnch], .btn-primary[b-0q0b1itnch] {
    background: rgba(10, 137, 18, 1) !important;
    border: none;
    outline: none; /* Remove blue outline */
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 3px 6px rgba(0,0,0,0.2);
}

    .timer-main-btn:hover[b-0q0b1itnch], .btn-primary:hover[b-0q0b1itnch] {
        background: #1e7a1e !important;
        outline: none;
    }

    .timer-main-btn:active[b-0q0b1itnch], .btn-primary:active[b-0q0b1itnch] {
        background: #1a6b1a !important;
        outline: none;
        transform: translateY(1px);
    }

    .timer-main-btn:focus[b-0q0b1itnch], .btn-primary:focus[b-0q0b1itnch] {
        outline: none !important; /* Remove focus outline */
        box-shadow: 0 0 0 2px rgba(10, 137, 18, 0.3);
    }

    /* "Pressed in" effect when paused/running */
    .timer-main-btn.running[b-0q0b1itnch], .btn-primary.running[b-0q0b1itnch] {
        background: #1e7a1e !important;
        transform: translateY(2px);
        box-shadow: 0 1px 3px rgba(0,0,0,0.3);
    }

/* Secondary button styles (skip and restart) */
.timer-control-btn[b-0q0b1itnch], .secondary-btn[b-0q0b1itnch] {
    background: none;
    border: none;
    outline: none !important; /* Remove blue outline */
    color: white;
    cursor: pointer;
    opacity: 0.7;
    transition: all 0.3s ease;
}

.timer-control-btn[b-0q0b1itnch] {
    font-size: 2rem;
}

.secondary-btn[b-0q0b1itnch] {
    font-size: 1.8rem;
}

    .timer-control-btn:hover[b-0q0b1itnch], .secondary-btn:hover[b-0q0b1itnch] {
        opacity: 1;
        transform: scale(1.1);
        outline: none;
    }

    .timer-control-btn:focus[b-0q0b1itnch], .secondary-btn:focus[b-0q0b1itnch] {
        outline: none !important;
    }

    .timer-control-btn:active[b-0q0b1itnch], .secondary-btn:active[b-0q0b1itnch] {
        outline: none;
    }

/* Control buttons (settings, etc.) */
.control-btn[b-0q0b1itnch] {
    background: rgba(255,255,255,0.1);
    border: none;
    color: white;
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

    .control-btn:hover[b-0q0b1itnch] {
        background: rgba(255,255,255,0.2);
    }

    /* Tooltip styles for buttons with title attribute */
    .plus-one-btn[title]:hover[b-0q0b1itnch]::after,
    .control-btn[title]:hover[b-0q0b1itnch]::after {
        content: attr(title);
        position: absolute;
        bottom: 100%;
        left: 50%;
        transform: translateX(-50%);
        background: rgba(0,0,0,0.9);
        color: white;
        padding: 8px 12px;
        border-radius: 4px;
        font-size: 0.8rem;
        white-space: nowrap;
        z-index: 1000;
        margin-bottom: 5px;
        opacity: 1;
        transition: opacity 0.3s ease;
    }

.settings-btn[b-0q0b1itnch] {
    border-top-right-radius: 6px;
    border-bottom-right-radius: 6px;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

.timer-info[b-0q0b1itnch] {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-top: 15px;
    font-size: 1.1rem;
    opacity: 0.8;
}
/* /Pages/Tasks.razor.rz.scp.css */

/* Style for task drag and drop */
.task-wrapper[b-i49fy81qh5] {
    position: relative;
}

.drop-indicator[b-i49fy81qh5] {
    position: absolute;
    top: 0;
    left: 0;
    height: 0;
    width: 100%;
    border-top: 3px solid limegreen;
    opacity: 0;
    transition: opacity 0.1s ease;
}

    .drop-indicator.visible[b-i49fy81qh5] {
        opacity: 1;
    }

.bottom-drop-zone[b-i49fy81qh5] {
    position: absolute;
    align-content: center;
    left: 0;
    right: 0;
    bottom: 0;
    height: 85px;
    background: transparent;
    z-index: 10;
    pointer-events: none;
}

    .bottom-drop-zone.active[b-i49fy81qh5] {
        pointer-events: auto;
    }

/* Style for the break tabs */
.break-screen[b-i49fy81qh5] {
    text-align: center;
    padding: 20px 20px;
}

.break-icon[b-i49fy81qh5] {
    font-size: 4rem;
    margin-bottom: 16px;
}

.break-text[b-i49fy81qh5] {
    font-size: 1.1rem;
    background: rgba(0, 0, 0, 0.0);
    opacity: 0.9;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 -20px;
    padding: 15px;
    word-wrap: break-word;
    border-radius: 8px;
    white-space: pre-wrap;
}

.checkin-container[b-i49fy81qh5] {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    padding: 10px;
    display: flex;
    align-items: center;
    max-width: 350px;
    margin: 25px auto auto auto;
}


.question-label[b-i49fy81qh5] {
    font-size: 1.1rem;
    margin: 0px 35px 0px 10px;
    white-space: nowrap;
}

.checkin-buttons[b-i49fy81qh5] {
    display: flex;
    flex-direction: row;
    gap: 10px;
    flex: 1;
}

    .checkin-buttons .task-info-row[b-i49fy81qh5] {
        padding: 8px 12px;
        border-radius: 4px;
        transition: background 0.3s ease;
    }

        .checkin-buttons .task-info-row:hover[b-i49fy81qh5] {
            background: rgba(255, 255, 255, 0.1);
        }

.checkin-btn[b-i49fy81qh5] {
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 4px;
    padding: 8px 12px;
    color: white;
    cursor: pointer;
    transition: background 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    position: relative;
}

    .checkin-btn:hover[b-i49fy81qh5] {
        background: rgba(255, 255, 255, 0.2);
    }

    .checkin-btn .btn-icon[b-i49fy81qh5] {
        font-size: 1rem;
    }

    .checkin-btn .btn-text[b-i49fy81qh5] {
        display: none;
        position: absolute;
        bottom: 125%; 
        left: 50%;
        transform: translateX(-50%);
        background: rgba(0, 0, 0, 0.8);
        color: white;
        padding: 5px 10px;
        border-radius: 4px;
        white-space: nowrap;
        z-index: 1000;
        transition: opacity 0.2s;
    }

    .checkin-btn .btn-title[b-i49fy81qh5] {
        font-size: 0.9rem;
    }

    .checkin-btn:hover .btn-text[b-i49fy81qh5] {
        display: block;
        bottom: 125%;
        left: 50%;
    }

    /* Tooltip styling */
    .checkin-btn:hover .btn-text[b-i49fy81qh5] {
        display: block;
        position: absolute;
        bottom: 35%;
        background: rgba(0, 0, 0, 0.8);
        color: white;
        padding: 5px 10px;
        border-radius: 4px;
        margin-top: 30px;
        z-index: 1;
        white-space: nowrap;
    }

.tooltip-btn[b-i49fy81qh5] {
    position: relative;
    display: inline-block;
    z-index: 1;
}

    .tooltip-btn .tooltip-text[b-i49fy81qh5] {
        visibility: hidden;
        opacity: 0;
        position: absolute;
        top: 125%;
        left: 50%;
        transform: translateX(-50%);
        background: rgba(0, 0, 0, 0.8);
        color: white;
        padding: 5px 10px;
        border-radius: 4px;
        white-space: nowrap;
        transition: opacity 0.2s;
        pointer-events: none;
        z-index: 1000;
    }

    .tooltip-btn:hover .tooltip-text[b-i49fy81qh5] {
        visibility: visible;
        opacity: 1;
    }

.tooltip[b-i49fy81qh5] {
    position: relative;
    display: inline-block;
    z-index: 1;
}

    .tooltip .tooltip-text[b-i49fy81qh5] {
        visibility: hidden;
        opacity: 1;
        position: absolute;
        bottom: 125%;
        left: 50%;
        transform: translateX(-50%);
        background: rgba(0, 0, 0, 0.8);
        color: white;
        padding: 5px 10px;
        border-radius: 4px;
        white-space: nowrap;
        transition: opacity 0.2s;
        pointer-events: none;
    }

    .tooltip:hover .tooltip-text[b-i49fy81qh5] {
        visibility: visible;
        opacity: 1;
    }




/*< Style for the timer tab*/
/* Container wrapping active task + tasks */
.tasks-wrapper[b-i49fy81qh5] {
    display: flex;
    flex-direction: column;
    height: 100%; /* fills parent container dynamically */
}


/* Active Task Section */
.active-task-section[b-i49fy81qh5] {
    flex: 0 0 auto;
    position: sticky;
    top: 0;
/*    z-index: 20;*/
    background: rgba(10, 137, 18, 1);
    border-radius: 12px 12px 0 0;
    padding: 16px 20px;
    margin-top: 20px;
}


/* Tasks Section */
.tasks-section[b-i49fy81qh5] {
    flex: 1 1 auto;
    overflow-y: auto;
    padding: 16px 20px 20px 20px;
    background: rgba(89, 8, 8, 0.25);
    border-radius: 0 0 12px 12px;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

    .tasks-section > *[b-i49fy81qh5] {
        margin-bottom: 8px;
    }

    .tasks-section[b-i49fy81qh5]::-webkit-scrollbar {
        display: none;
    }

/* Section labels */
.section-label[b-i49fy81qh5] {
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 12px;
    opacity: 0.9;
}

/* Tasks header */
.tasks-header[b-i49fy81qh5] {
    display: flex;
    justify-content: space-between;
    align-items: center; /* Changed from flex-start to center */
    margin-bottom: 16px;
}

/* Active task content */
.active-task-content[b-i49fy81qh5] {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.active-task-top-row[b-i49fy81qh5] {
    display: flex;
    justify-content: space-between; /* space between left and right */
    align-items: center; /* vertical alignment */
    gap: 16px;
}

.active-task-left[b-i49fy81qh5] {
    flex-shrink: 0; /* left side won't shrink */
}

.active-task-right[b-i49fy81qh5] {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 25px;
    padding-right: 5px;
    border-radius: 5px;
    margin-top: -15px;
}

.task-info-row[b-i49fy81qh5] {
    font-size: 0.9rem;
    opacity: 0.9;
}

.active-task-name[b-i49fy81qh5] {
    font-size: 1.1rem;
    font-weight: 500;
    flex: 1;
    white-space: normal;
    overflow-wrap: break-word;
    word-break: break-word;
    min-width: 0;
    background: rgba(1,1,1,0.0);
    border-radius: 8px;
    padding: 15px;
}

.active-task-progress[b-i49fy81qh5] {
    font-size: 0.9rem;
    margin-left: 12px;
}

/* Menu and buttons */
.menu-btn[b-i49fy81qh5] {
    background: rgba(255,255,255,0.1);
    border: none;
    color: white;
    cursor: pointer;
    padding: 6px 10px;
    border-radius: 6px;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

    .menu-btn:hover[b-i49fy81qh5] {
        background: rgba(255,255,255,0.2);
    }

.menu-popup .menu-item[b-i49fy81qh5] {
    width: 100%;
    background: rgba(0, 0, 0, 0.8);
    border: none;
    color: white;
    padding: 10px 16px;
    text-align: left;
    cursor: pointer;
    transition: background 0.2s ease;
}

    .menu-popup .menu-item:hover[b-i49fy81qh5] {
        background: rgba(255,255,255,0.1);
    }

.menu-btn[b-i49fy81qh5], .task-btn[b-i49fy81qh5], .add-task-btn[b-i49fy81qh5] {
    border: none;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
}

/* Menu container */
.menu-container[b-i49fy81qh5] {
    position: relative;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Horizontal menu */
.horizontal-menu[b-i49fy81qh5] {
    display: flex;
    gap: 6px;
    animation: slideIn-b-i49fy81qh5 0.3s ease;
}

@keyframes slideIn-b-i49fy81qh5 {
    from {
        opacity: 0;
        transform: translateX(10px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.horizontal-menu .menu-item[b-i49fy81qh5] {
    background: rgba(255,255,255,0.1);
    border: none;
    color: white;
    padding: 6px 10px;
    border-radius: 4px;
    font-size: 0.8rem;
    cursor: pointer;
    transition: background 0.2s ease;
    white-space: nowrap;
}

    .horizontal-menu .menu-item:hover[b-i49fy81qh5] {
        background: rgba(255,255,255,0.2);
    }

/* Updated menu button */
.menu-btn.active[b-i49fy81qh5] {
    background: rgba(255,255,255,0.3);
}

/* Updated popup menu */
.menu-popup[b-i49fy81qh5] {
    position: absolute;
    top: 100%;
    right: 0;
    background: rgba(0, 0, 0, 0.9);
    border-radius: 8px;
    padding: 8px 0;
    width: 180px;
    z-index: 1000;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
    margin-top: 4px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.2s ease;
}

    /* Show on hover or force visible */
    .menu-container:not(.toggled):hover .menu-popup[b-i49fy81qh5],
    .menu-popup.force-visible[b-i49fy81qh5] {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .menu-popup:hover[b-i49fy81qh5] {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

/* Loading and hidden states */
.loading[b-i49fy81qh5], .tasks-hidden[b-i49fy81qh5] {
    text-align: center;
    padding: 20px;
    opacity: 0.7;
    font-style: italic;
}

/* Task items */
.task-item[b-i49fy81qh5] {
    display: flex;
    align-items: center;
    background: rgba(0,0,0,0.2);
    padding: 12px 16px;
    border-radius: 8px;
    margin-bottom: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    gap: 12px;
    min-height: 65px;
}

    .task-item:hover[b-i49fy81qh5] {
        background: rgba(0,0,0,0.3);
    }

    .task-item.active[b-i49fy81qh5] {
        border-left: 4px solid #228B22;
    }

    .task-item.completed[b-i49fy81qh5] {
        opacity: 0.6;
    }

.task-checkbox[b-i49fy81qh5] {
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    cursor: pointer;
    appearance: none;
    border: 2px solid black;
    border-radius: 20px;
    position: relative;
    background-color: white;
    transition: background-color 0.2s, transform 0.2s;
}

    .task-checkbox[b-i49fy81qh5]::after {
        content: '';
        position: absolute;
        width: 4px;
        height: 8px;
        border-right: 2px solid white;
        border-bottom: 2px solid white;
        top: 2px;
        left: 6px;
        transform: rotate(45deg) scale(0);
        transition: transform 0.2s ease;
    }

    .task-checkbox:checked[b-i49fy81qh5] {
        background-color: #007f3f;
        border-color: #007f3f;
        transform: scale(1.15);
    }

        .task-checkbox:checked[b-i49fy81qh5]::after {
            transform: rotate(45deg) scale(1);
        }

    .task-checkbox:not(:checked)[b-i49fy81qh5] {
        transform: scale(1);
    }


/* Task text content */
.task-name[b-i49fy81qh5], .task-edit-input[b-i49fy81qh5] {
    flex: 1;
    color: white;
    font-size: 1rem;
    white-space: normal;
    overflow-wrap: break-word;
    word-break: break-word;
    min-width: 0;
}

    .task-name.completed[b-i49fy81qh5], .task-edit-input.completed[b-i49fy81qh5] {
        text-decoration: line-through;
        opacity: 0.7;
    }

.task-edit-input[b-i49fy81qh5] {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 4px;
    padding: 6px 8px;
}

    .task-edit-input:focus[b-i49fy81qh5] {
        outline: none;
    }

/* Task info and actions */
.task-info[b-i49fy81qh5] {
    opacity: 0.7;
    font-size: 0.9rem;
    min-width: 40px;
    transition: opacity 0.2s ease;
}

.task-actions[b-i49fy81qh5] {
    opacity: 0;
    transition: opacity 0.2s ease;
    min-width: 80px;
    display: flex;
    gap: 4px;
    justify-content: flex-end;
}

.task-item:hover .task-actions[b-i49fy81qh5] {
    opacity: 1;
}

.task-btn[b-i49fy81qh5] {
    background: rgba(255,255,255,0.1);
    padding: 4px 6px;
    border-radius: 4px;
    font-size: 0.8rem;
    min-width: 24px;
    transition: all 0.2s ease;
}

    .task-btn:hover[b-i49fy81qh5] {
        background: rgba(255,255,255,0.2);
    }

/* Add task section */
.add-task-btn[b-i49fy81qh5] {
    background: rgba(255,255,255,0.1);
    border: none;
    color: white;
    padding: 9px 10px; /* Match menu-item padding */
    border-radius: 4px;
    font-size: 0.8rem;
    cursor: pointer;
    transition: background 0.2s ease;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    text-align: left; /* Match menu-item alignment */
}

    .add-task-btn:hover[b-i49fy81qh5] {
        background: rgba(255,255,255,0.2);
    }

.max-tasks-warning[b-i49fy81qh5] {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgb(18, 18, 18);
    color: white;
    padding: 12px 20px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    z-index: 1000;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    animation: fadeInOut-b-i49fy81qh5 0.3s ease-in;
}

@keyframes fadeInOut-b-i49fy81qh5 {
    from {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.9);
    }

    to {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }
}


/* /Shared/MainLayout.razor.rz.scp.css */
.page[b-ot087icjp5] {
    position: relative;
    display: flex;
    flex-direction: column;
}

main[b-ot087icjp5] {
    flex: 1;
}

.navbar[b-ot087icjp5] {
    background-color: rgba(0, 0, 0, 0.5); /* black, 50% transparent */
    color: white;
    transition: background-color 0.3s ease;
}


.sidebar[b-ot087icjp5] {
    background-image: linear-gradient(180deg, rgb(5, 39, 103) 0%, #3a0647 70%);
}

.top-row[b-ot087icjp5] {
    justify-content: flex-end;
    height: 3.5rem;
    display: flex;
    align-items: center;
    position: relative;
    top: 0 !important;
    z-index: 1000 !important;
}

    .top-row[b-ot087icjp5]  a, .top-row[b-ot087icjp5]  .btn-link {
        white-space: nowrap;
        margin-left: 1.5rem;
        text-decoration: none;
    }

    .top-row[b-ot087icjp5]  a:hover, .top-row[b-ot087icjp5]  .btn-link:hover {
        text-decoration: underline;
    }

    .top-row[b-ot087icjp5]  a:first-child {
        overflow: hidden;
        text-overflow: ellipsis;
    }

@media (max-width: 640.98px) {
    .top-row:not(.auth)[b-ot087icjp5] {
        display: none;
    }

    .top-row.auth[b-ot087icjp5] {
        justify-content: space-between;
    }

    .top-row[b-ot087icjp5]  a, .top-row[b-ot087icjp5]  .btn-link {
        margin-left: 0;
    }
}

@media (min-width: 641px) {
    .page[b-ot087icjp5] {
        flex-direction: row;
    }

    .sidebar[b-ot087icjp5] {
        width: 250px;
        height: 100vh;
        position: sticky;
        top: 0;
    }

    .top-row[b-ot087icjp5] {
        position: relative;
        top: 0;
        z-index: 10;
    }

    .top-row.auth[b-ot087icjp5]  a:first-child {
        flex: 1;
        text-align: right;
        width: 0;
    }

    .top-row[b-ot087icjp5], article[b-ot087icjp5] {
        padding-left: 2rem !important;
        padding-right: 1.5rem !important;
    }
}
