﻿/** {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background: #d8d8d8;
            font-size: 18px;
        }

        .top-bar {
            background: #002366;
            color: white;
            padding: 12px 26px;
            font-size: 17px;
            font-weight: 600;
            letter-spacing: 0.3px;
        }*/

.main-wrapper {
    display: flex;
    min-height: calc(100vh - 42px);
}

/* ══ LEFT SIDEBAR ══ */
.sidebar {
    width: 270px;
    min-width: 270px;
    background: #009432;
    display: flex;
    flex-direction: column;
}

.sidebar-item {
    padding: 17px 18px;
    color: white;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    border-bottom: 1px solid rgba(255,255,255,0.12);
    border-left: 5px solid transparent;
    transition: all 0.2s;
    line-height: 1.4;
}

    .sidebar-item:hover {
        background: rgba(255,255,255,0.1);
        border-left-color: #cc0000;
    }

    .sidebar-item.active {
        background: #cc0000;
        border-left-color: #ff4444;
    }

/* ══ RIGHT CONTENT AREA ══ */
.content-area {
    flex: 1;
    background: white;
    padding: 30px 40px;
    overflow-y: auto;
}

.content-section {
    display: none;
}

    .content-section.active {
        display: block;
    }

.section-title {
    color: #009432;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 22px;
    padding-bottom: 12px;
    border-bottom: 2px solid #009432;
}

.content-area p {
    font-size: 18px;
    line-height: 1.95;
    color: #222;
    margin-bottom: 18px;
    text-align: justify;
}

.content-area ul {
    margin: 8px 0 20px 30px;
}

    .content-area ul li {
        font-size: 18px;
        line-height: 1.95;
        color: #222;
        margin-bottom: 9px;
    }

.content-area ol {
    margin: 8px 0 20px 30px;
}

    .content-area ol li {
        font-size: 18px;
        line-height: 1.95;
        color: #222;
        margin-bottom: 9px;
    }

.highlight-box {
    background: #eef5ff;
    border-left: 4px solid #002366;
    padding: 16px 20px;
    margin: 18px 0;
    font-size: 18px;
    color: #222;
    border-radius: 0 6px 6px 0;
    line-height: 1.9;
}

.sub-heading {
    font-size: 19px;
    font-weight: 700;
    color: #002366;
    margin: 24px 0 12px 0;
}

/* Monitoring Table */
.monitor-table {
    width: 100%;
    border-collapse: collapse;
    margin: 14px 0 22px 0;
    font-size: 17px;
}

    .monitor-table th {
        background: #002366;
        color: white;
        padding: 14px 18px;
        text-align: left;
        font-weight: 600;
        font-size: 17px;
    }

    .monitor-table td {
        padding: 13px 18px;
        border: 1px solid #ccc;
        color: #222;
        font-size: 17px;
    }

    .monitor-table tr:nth-child(even) td {
        background: #f0f5ff;
    }

/* Lifecycle Steps */
.lifecycle-steps {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin: 16px 0 22px 0;
    max-width: 640px;
}

.lifecycle-row {
    display: flex;
    align-items: stretch;
}

.lifecycle-connector {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 52px;
    flex-shrink: 0;
}

    .lifecycle-connector .arrow-line {
        width: 3px;
        flex: 1;
        min-height: 18px;
        background: #cc0000;
    }

    .lifecycle-connector .arrow-head {
        width: 0;
        height: 0;
        border-left: 7px solid transparent;
        border-right: 7px solid transparent;
        border-top: 10px solid #cc0000;
        margin-bottom: 2px;
    }

.step-num {
    background: #cc0000;
    color: white;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
    flex-shrink: 0;
    border: 3px solid white;
    box-shadow: 0 0 0 2px #cc0000;
    margin: 8px 0;
}

.step-box {
    background: #002366;
    color: white;
    padding: 15px 22px;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 14px;
    margin: 6px 0 6px 10px;
    flex: 1;
    border-left: 4px solid #cc0000;
}

/* Funding Bar */
.funding-bar {
    display: flex;
    gap: 10px;
    margin: 14px 0 22px 0;
    flex-wrap: wrap;
}

.fund-block {
    background: #002366;
    color: white;
    padding: 16px 24px;
    border-radius: 6px;
    text-align: center;
    font-size: 26px;
    font-weight: 700;
    flex: 1;
    min-width: 80px;
}

    .fund-block .label {
        font-size: 14px;
        font-weight: 400;
        opacity: 0.85;
        margin-top: 6px;
    }

.link-list {
    margin: 10px 0 20px 30px;
}

    .link-list li {
        margin-bottom: 10px;
        font-size: 18px;
    }

    .link-list a {
        color: #0055bb;
        text-decoration: none;
    }

        .link-list a:hover {
            text-decoration: underline;
        }

/* Profile Card */
.profile-card {
    background: #f7faff;
    border: 1px solid #ccdcff;
    border-left: 5px solid #002366;
    border-radius: 8px;
    padding: 20px 24px;
    margin-bottom: 20px;
}

    .profile-card .p-name {
        font-size: 20px;
        font-weight: 700;
        color: #002366;
        margin-bottom: 7px;
    }

    .profile-card .p-desig {
        font-size: 17px;
        color: #444;
        margin-bottom: 7px;
        line-height: 1.5;
    }

    .profile-card .p-email {
        font-size: 17px;
    }

        .profile-card .p-email a {
            color: #0055bb;
            text-decoration: none;
        }

            .profile-card .p-email a:hover {
                text-decoration: underline;
            }

/* Trans-aapti */
.quote-box {
    background: #fff3f3;
    border-left: 5px solid #cc0000;
    padding: 18px 22px;
    margin: 18px 0;
    font-size: 18px;
    font-style: italic;
    color: #333;
    border-radius: 0 6px 6px 0;
    line-height: 1.9;
}

.initiative-badge {
    display: inline-block;
    background: #002366;
    color: white;
    padding: 9px 18px;
    border-radius: 20px;
    font-size: 16px;
    font-weight: 600;
    margin: 10px 0 18px 0;
}

.resource-link-box {
    background: #eef5ff;
    border: 1px solid #aac4ff;
    border-radius: 8px;
    padding: 18px 22px;
    margin: 14px 0;
}

    .resource-link-box .res-title {
        font-size: 17px;
        font-weight: 700;
        color: #002366;
        margin-bottom: 9px;
    }

    .resource-link-box a {
        font-size: 17px;
        color: #0055bb;
        text-decoration: none;
        word-break: break-all;
    }

        .resource-link-box a:hover {
            text-decoration: underline;
        }

/* Empty Tab */
.empty-tab {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 440px;
    text-align: center;
}

    .empty-tab .empty-icon {
        font-size: 80px;
        margin-bottom: 22px;
    }

    .empty-tab .empty-title {
        font-size: 24px;
        font-weight: 700;
        color: #002366;
        margin-bottom: 12px;
    }

    .empty-tab .empty-sub {
        font-size: 18px;
        color: #999;
    }


