.otk-system-bar {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding: 1rem 0;
    margin-bottom: 2rem;
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
}

.otk-master-pill {
    display: flex;
    align-items: center;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 9999px;
    padding: 4px 6px;
    margin-right: 20px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

.otk-pill-section {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    padding: 0 1.25rem;
    font-size: 0.8125rem;
    font-weight: 600;
    color: #475569;
    white-space: nowrap;
}

.otk-weather-section {
    cursor: pointer;
    transition: color 0.2s;
}

.otk-weather-section:hover {
    color: #6366f1;
}

.otk-pill-divider {
    width: 1px;
    height: 18px;
    background-color: #e2e8f0;
}

.otk-icon {
    font-size: 1rem;
    color: #6366f1;
}

.otk-status-indicator {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 1rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-left: 0.5rem;
}

.otk-status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.status-online { background: #f0fdf4; color: #166534; }
.status-online .otk-status-dot { background: #22c55e; box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.1); }

.status-issues { background: #fffbeb; color: #92400e; }
.status-issues .otk-status-dot { background: #f59e0b; }

.status-offline { background: #fef2f2; color: #991b1b; }
.status-offline .otk-status-dot { background: #ef4444; }

/* Modal styles remain similar but polished */
.otk-zip-modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    z-index: 9999;
    width: 320px;
    display: none;
    border: 1px solid #e2e8f0;
}

.otk-zip-modal.active {
    display: block;
}

.otk-zip-modal-header {
    margin-bottom: 1rem;
    font-weight: 700;
    font-size: 1rem;
}

.otk-zip-modal input {
    width: 100%;
    padding: 0.625rem;
    border: 1px solid var(--border-color, #e2e8f0);
    border-radius: 6px;
    margin-bottom: 1rem;
}

.otk-zip-modal-actions {
    display: flex;
    justify-content: flex-end;
    gap: 0.5rem;
}
