.toolbar {

    height: 48px;

    background: #111827;

    border-bottom: 1px solid #29303d;

    display: flex;

    align-items: center;

    justify-content: space-between;

    padding: 0 14px;

    flex-shrink: 0;
}

.toolbar-right {

    display: flex;

    align-items: center;

    gap: 14px;
}






.alarm-pill
{
    padding: 6px 12px;

    border-radius: 999px;

    border: 1px solid #dc2626;

    background: #dc2626;

    color: white;

    font-size: 13px;

    font-weight: bold;

    box-shadow:
        0 0 10px rgba(220,38,38,0.4);
    
    cursor: pointer;
}
.alarm-pill
{
    background: #dc2626;
    color: white;
    border: 1px solid #dc2626;
    animation: alarmPulse 2s infinite;
}

@keyframes alarmPulse
{
    0%   { opacity: 1; }
    50%  { opacity: 0.6; }
    100% { opacity: 1; }
}


/*
.alarm-pill {

    padding: 6px 12px;

    border-radius: 999px;

    border: 1px solid #ef4444;

    background: rgba(239,68,68,0.12);

    color: #f87171;

    font-size: 13px;

    font-weight: bold;

    box-shadow:
        0 0 10px rgba(239,68,68,0.15);
}*/

.toolbar-icon-btn {

    width: 34px;

    height: 34px;

    border-radius: 8px;

    border: 1px solid #334155;

    background: #0f172a;

    color: white;

    cursor: pointer;

    font-size: 16px;
}

.toolbar-icon-btn:hover {

    border-color: #5eead4;
}

.toolbar-user {

    display: flex;

    align-items: center;

    gap: 8px;

    position: relative;
}

.toolbar-username {

    color: white;

    font-size: 14px;
}

.toolbar-menu-btn {

    border: none;

    background: transparent;

    color: white;

    font-size: 20px;

    cursor: pointer;
}

.toolbar-menu {

    position: absolute;

    top: 36px;

    right: 0;

    width: 180px;

    background: #0f172a;

    border: 1px solid #334155;

    border-radius: 8px;

    overflow: hidden;

    display: none;

    z-index: 1000;

    box-shadow:
        0 10px 30px rgba(0,0,0,0.35);
}

.toolbar-menu-visible {

    display: block;
}

.toolbar-menu-item {

    padding: 12px;

    color: white;

    font-size: 13px;

    cursor: pointer;

    border-bottom: 1px solid rgba(255,255,255,0.04);
}

.toolbar-menu-item:hover {

    background: #1e293b;
}

.toolbar-left {

    display: flex;

    align-items: center;
}

.toolbar-brand {

    display: flex;

    align-items: center;

    gap: 10px;
}

.toolbar-brand-dot {

    width: 10px;

    height: 10px;

    border-radius: 999px;

    background: #5eead4;

    box-shadow:
        0 0 10px rgba(94,234,212,0.9),
        0 0 20px rgba(94,234,212,0.35);
}

.toolbar-brand-text {

    color: white;

    font-size: 15px;

    font-weight: 700;

    letter-spacing: 1px;
}
.toolbar-cascade-btn
{
    width: 34px;

    height: 34px;

    border: none;

    border-radius: 6px;

    background: #1e293b;

    color: white;

    cursor: pointer;

    margin-right: 8px;
}

.toolbar-cascade-btn:hover
{
    background: #334155;
}

.alarm-pill
{
    cursor: pointer;
}