

.fs-page-title {
    color: #1F2937;
    font-weight: 700;
    font-size: 1.5rem;
    margin: 24px 0;
}

/* --- Main Cards --- */
.fs-main-card {
    background: #ffffff;
    border-radius: 12px;
    border: 1px solid #E5E7EB;
    box-shadow: 0 1px 2px rgba(0,0,0,0.02);
    padding: 24px;
    margin-bottom: 24px;
}

.fs-section-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: #374151;
    margin-bottom: 6px;
}

.fs-section-subtitle {
    font-size: 0.75rem;
    color: #6B7280;
    margin-bottom: 24px;
}

/* ── Progress Card (default in-progress state) ── */
.fs-progress-card {
    background: linear-gradient(to right, #FFFBEB, #FEF3C7);
    border: 1px solid #FDE68A;
    border-radius: 12px;
    padding: 18px 22px;
    margin-bottom: 24px;
    transition: background 0.3s, border-color 0.3s;
}

.fs-progress-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 16px;
}

.fs-progress-title {
    font-weight: 700;
    font-size: 1.1rem;
    color: #1F2937;
    margin-bottom: 4px;
}

.fs-progress-desc {
    font-size: 0.75rem;
    color: #4B5563;
}

.fs-progress-percent {
    font-weight: 700;
    font-size: 1.4rem;
    color: #92400E;
    line-height: 1;
    text-align: right;
}

    .fs-progress-percent small {
        font-size: 0.65rem;
        color: #B45309;
        font-weight: 600;
        display: block;
        margin-top: 4px;
    }

.fs-progress-bar {
    height: 6px;
    background-color: #E5E7EB;
    border-radius: 10px;
    width: 100%;
    overflow: hidden;
}

.fs-progress-fill {
    height: 100%;
    background-color: #059669;
    border-radius: 10px;
    transition: width 0.4s ease-out;
}

/* ── 100% Ready-for-Submission state ── */
.fs-progress-card.fs-ready {
    background-color: #ECFDF5;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='80' viewBox='0 0 80 80'%3E%3Cg fill='%2310B981' fill-opacity='0.10'%3E%3Ccircle cx='10' cy='10' r='2'/%3E%3Ccircle cx='30' cy='25' r='1.5'/%3E%3Ccircle cx='55' cy='15' r='2'/%3E%3Ccircle cx='70' cy='40' r='1.5'/%3E%3Ccircle cx='20' cy='55' r='2'/%3E%3Ccircle cx='45' cy='65' r='1.5'/%3E%3Ccircle cx='65' cy='70' r='2'/%3E%3Ccircle cx='5' cy='35' r='1.5'/%3E%3Ccircle cx='40' cy='45' r='1.5'/%3E%3C/g%3E%3C/svg%3E");
    border: 1px solid #6EE7B7;
    box-shadow: 0 2px 8px rgba(16, 185, 129, 0.08);
}

.fs-ready-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    margin-bottom: 14px;
    flex-wrap: wrap;
}

.fs-ready-text {
    flex: 1;
    min-width: 0;
}

.fs-ready-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #065F46;
    margin-bottom: 4px;
}

.fs-ready-desc {
    font-size: 0.75rem;
    color: #047857;
    font-weight: 500;
}

.fs-ready-right {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-shrink: 0;
}

.fs-ready-percent {
    font-size: 1.4rem;
    font-weight: 700;
    color: #059669;
    line-height: 1;
    text-align: right;
}

    .fs-ready-percent small {
        font-size: 0.65rem;
        font-weight: 600;
        color: #047857;
        display: block;
        margin-top: 4px;
    }

.fs-ready-badge {
    font-size: 2.6rem;
    color: #10B981;
    filter: drop-shadow(0 2px 6px rgba(16, 185, 129, 0.35));
    line-height: 1;
}

.fs-progress-card.fs-ready .fs-progress-bar {
    background-color: rgba(255, 255, 255, 0.7);
}
.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background-color: #319135;
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: 20px;
}

.verifyicon {
    width: 15px;
    height: 15px;
    object-fit: contain;
    flex-shrink: 0;
    filter: brightness(0) invert(1); 
}
/* ── Completion Status Grid ── */
.fs-completion-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

@media (max-width: 992px) {
    .fs-completion-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .fs-completion-grid {
        grid-template-columns: 1fr;
    }
}

.fs-ticket-card {
    background-color: #ffffff;
    border: 1px solid #E5E7EB;
    border-radius: 8px;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    box-shadow: 0 1px 2px rgba(0,0,0,0.01);
}

    .fs-ticket-card.fs-bg-tint-green {
        background-color: #F4FBF7;
        border-color: #D1FAE5;
    }

    .fs-ticket-card.fs-bg-tint-orange {
        background-color: #FFFAEC;
        border-color: #FDE68A;
    }

.fs-ticket-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.fs-ticket-title-wrap {
    display: flex;
    align-items: center;
    gap: 10px;
}

.fs-ticket-icon {
    width: 28px;
    height: 28px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
}

.fs-ticket-title {
    font-weight: 700;
    font-size: 0.85rem;
    color: #1F2937;
    margin: 0;
}

.fs-edit-icon {
    color: #3B82F6;
    font-size: 0.9rem;
    cursor: pointer;
}

.fs-ticket-data {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.fs-data-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 12px;
}

.fs-data-lbl {
    font-size: 0.65rem;
    color: #6B7280;
    font-weight: 500;
    flex: 0 0 110px;
}

.fs-data-val {
    font-size: 0.7rem;
    color: #1F2937;
    font-weight: 600;
    flex: 1;
    text-align: left;
}

.fs-tag-pill {
    background-color: #ffffff;
    color: #059669;
    border: 1px solid #A7F3D0;
    font-size: 0.55rem;
    padding: 2px 6px;
    border-radius: 4px;
    display: inline-block;
    margin-right: 4px;
    margin-bottom: 4px;
    font-weight: 700;
}

/* Theme classes for the ticket icon block */
.fs-theme-green .fs-ticket-icon {
    background-color: #ECFDF5;
    color: #10B981;
}

.fs-theme-orange .fs-ticket-icon {
    background-color: #FFF7ED;
    color: #F59E0B;
}

.fs-bg-tint-green .fs-theme-green .fs-ticket-icon {
    background-color: #ffffff;
    border: 1px solid #D1FAE5;
}

.fs-bg-tint-orange .fs-theme-orange .fs-ticket-icon {
    background-color: #ffffff;
    border: 1px solid #FDE68A;
}

/* ── Enclosures section (full-width inside grid) ── */
.fs-span-3 {
    grid-column: span 3;
}

@media (max-width: 992px) {
    .fs-span-3 {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .fs-span-3 {
        grid-column: span 1;
    }
}

.fs-enclosure-header {
    display: flex;
    justify-content: space-between;
    font-size: 0.7rem;
    color: #4B5563;
    margin-bottom: 12px;
    font-weight: 500;
}

.fs-enclosure-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

@media (max-width: 768px) {
    .fs-enclosure-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.fs-enclosure-pill {
    display: flex;
    align-items: center;
    gap: 8px;
    background-color: #ffffff;
    border: 1px solid #A7F3D0;
    color: #059669;
    padding: 10px 12px;
    border-radius: 6px;
    font-size: 0.7rem;
    font-weight: 600;
}

    .fs-enclosure-pill i {
        font-size: 0.9rem;
    }

/* ── Terms and Conditions ── */
.fs-tc-box {
    background-color: #F9FAFB;
    border-radius: 8px;
    padding: 20px;
    height: 100%;
}

.fs-tc-check-header {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 0.9rem;
    color: #1F2937;
    margin-bottom: 16px;
}

.fs-custom-check {
    width: 1.1rem;
    height: 1.1rem;
    border-color: #D1D5DB;
    cursor: pointer;
}

    .fs-custom-check:checked {
        background-color: #059669;
        border-color: #059669;
    }

.fs-tc-list {
    list-style-type: none;
    padding-left: 0;
    margin: 0;
    font-size: 0.75rem;
    color: #4B5563;
    line-height: 2;
}

    .fs-tc-list li::before {
        content: "•";
        color: #9CA3AF;
        font-weight: bold;
        display: inline-block;
        width: 12px;
    }

/* ── Warning Alert ── */
.fs-alert {
    background-color: #FEF2F2;
    border: 1px solid #FECACA;
    border-radius: 8px;
    padding: 16px 20px;
    color: #DC2626;
    font-size: 0.75rem;
    margin-bottom: 24px;
}

    .fs-alert strong {
        font-weight: 700;
        margin-right: 4px;
        font-size: 0.85rem;
    }
