/* =========================================
   MONITOR PAGE LAYOUT
========================================= */

.ci3-monitor-page {
    background: linear-gradient(180deg, #f6f9ff 0%, #ffffff 100%);
    padding: 3rem 0 4rem;
}

.ci3-monitor-inner {
    max-width: 1120px;
    /* lebih lega */
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* vertical rhythm */
.ci3-monitor-inner>div {
    margin-bottom: 3rem;
}

/* =========================================
   HERO STATUS CARD
========================================= */

.ci3-status-hero {
    background: linear-gradient(180deg, #ffffff 0%, #f9fbff 100%);
    border: 1px solid #e6eefc;
    border-radius: 18px;
    padding: 2.2rem;
    box-shadow:
        0 20px 50px rgba(37, 99, 235, 0.06),
        0 4px 12px rgba(0, 0, 0, 0.04);
}

.ci3-status-note {
    font-size: 0.9rem;
    color: #6b7280;
    margin-top: 1.5rem;
}

/* =========================================
   SECTION TITLES
========================================= */

.ci3-section-title {
    font-weight: 600;
    font-size: 1.2rem;
    letter-spacing: -0.2px;
    margin-bottom: 6px;
}

.ci3-section-sub {
    font-size: 0.9rem;
    color: #6b7280;
}

/* =========================================
   MARKET CONTEXT CARD
========================================= */

.ci3-market-context {
    background: #ffffff;
    border: 1px solid #eef2f7;
    border-radius: 16px;
    padding: 1.75rem 2rem;
}

/* =========================================
   WATCHLIST PREVIEW
========================================= */

.ci3-watchlist-preview {
    background: #ffffff;
    border: 1px solid #eef2f7;
    border-radius: 16px;
    padding: 1.75rem 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}

.ci3-watchlist-row {
    padding: 20px 0;
    border-bottom: 1px solid #f0f4ff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: background 0.15s ease;
}

.ci3-watchlist-row:hover {
    background: #f8fafc;
}

.ci3-symbol {
    font-weight: 600;
    font-size: 16px;
    letter-spacing: -0.2px;
}

.ci3-name {
    font-size: 0.85rem;
    color: #6b7280;
}

.ci3-inline-status {
    font-weight: 500;
    font-size: 14px;
    color: #374151;
}

.ci3-preview-action {
    padding-top: 16px;
    border-top: 1px solid #eef2f7;
}

/* =========================================
   WORKSPACE CARD
========================================= */

.ci3-workspace {
    background: #ffffff;
    border: 1px solid #e5ecff;
    border-radius: 18px;
    padding: 2rem;
    box-shadow: 0 12px 28px rgba(37, 99, 235, 0.05);
}

.ci3-workspace-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.8rem;
}

/* workspace items */

.ci3-workspace-item {
    padding: 36px 0;
    border-bottom: 1px solid #f0f4ff;
}

.ci3-workspace-item:last-child {
    border-bottom: none;
}

.ci3-workspace-item:hover {
    background: #fbfdff;
}

.ci3-status {
    font-size: 15px;
    font-weight: 600;
    margin-top: 10px;
}

.ci3-reason {
    font-size: 0.9rem;
    color: #6b7280;
    margin-top: 6px;
    line-height: 1.6;
}

.ci3-meta {
    font-size: 0.8rem;
    color: #9ca3af;
    margin-top: 6px;
}

/* =========================================
   SEARCH INPUT + SUGGESTION
========================================= */

.ci3-search-wrapper {
    position: relative;
    width: 100%;
    max-width: 420px;
    /* sedikit lebih lebar */
}

.ci3-search-wrapper input {
    width: 100%;
    padding: 12px 14px;
    border-radius: 10px;
    border: 1px solid #dbe2f0;
    font-size: 14px;
    background: #ffffff;
    transition: all 0.2s ease;
}

.ci3-search-wrapper input:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.12);
}

/* suggestion dropdown */

.ci3-suggestion-box {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    margin-top: 6px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
    max-height: 240px;
    overflow-y: auto;
    z-index: 1000;
}

.ci3-suggestion-item {
    padding: 10px 14px;
    font-size: 14px;
    cursor: pointer;
    border-bottom: 1px solid #f3f4f6;
}

.ci3-suggestion-item:last-child {
    border-bottom: none;
}

.ci3-suggestion-item:hover {
    background: #f3f6ff;
}

/* =========================================
   GUARD MESSAGE
========================================= */

.ci3-guard {
    background: #f9fafb;
    padding: 1.6rem;
    border-radius: 14px;
    font-size: 0.9rem;
    color: #374151;
}



.ci3-status-badge {
    display: inline-block;
    padding: 6px 10px;
    font-size: 12px;
    font-weight: 600;
    border-radius: 999px;
}

.ci3-status-terbaca {
    background: #e8f3ff;
    color: #1da3d8;
}

.ci3-status-tidakcukup {
    background: #f3f4f6;
    color: #6b7280;
}

.ci3-workspace-header {
    border-bottom: 1px solid #eef2f7;
    padding-bottom: 1rem;
}

.btn-outline-primary,
.btn-outline-secondary,
.btn-outline-danger {
    border-radius: 8px;
}