.kbiz-search-empty {
    min-height: 70vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.kbiz-plane-img {
    width: 120px;
    height: 120px;
    margin-bottom: 22px;
}

.kbiz-search-empty h2 {
    font-size: 24px;
    font-weight: 600;
    color: #000;
}


/* Wrapper */
.kbiz-flight-app {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

.kbiz-flight-header {
    margin-bottom: 2rem;
    text-align: center;
}

.kbiz-flight-title {
    font-size: 2rem;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0 0 1rem 0;
}

.kbiz-flight-subtitle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    font-size: 1.125rem;
    color: #64748b;
}

.kbiz-route-badge {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 0.5rem 1.25rem;
    border-radius: 2rem;
    font-weight: 600;
    font-size: 0.95rem;
}

.kbiz-arrow-icon {
    width: 24px;
    height: 24px;
    color: #94a3b8;
}

.kbiz-flight-list {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.kbiz-flight-card {
    background: white;
    border-radius: 1rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    overflow: hidden;
}

.kbiz-flight-card:hover {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.08), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    transform: translateY(-2px);
    border-color: #cbd5e1;
}

.kbiz-flight-content {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 2rem;
    padding: 1.75rem;
    align-items: center;
}

.kbiz-flight-icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea15 0%, #764ba215 100%);
    border-radius: 1rem;
    flex-shrink: 0;
}

.kbiz-plane-icon {
    width: 32px;
    height: 32px;
    opacity: 0.9;
}

.kbiz-flight-details {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    min-width: 0;
}

.kbiz-airline-name {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1e293b;
}

.kbiz-route-info {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 1.5rem;
}

.kbiz-location {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.kbiz-code {
    font-size: 1.5rem;
    font-weight: 700;
    color: #334155;
    letter-spacing: -0.025em;
}

.kbiz-time {
    font-size: 1.125rem;
    font-weight: 600;
    color: #475569;
}

.kbiz-date {
    font-size: 0.875rem;
    color: #94a3b8;
    font-weight: 500;
}

.kbiz-route-line {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    min-width: 140px;
    position: relative;
}

.kbiz-dot {
    width: 8px;
    height: 8px;
    background: #667eea;
    border-radius: 50%;
    flex-shrink: 0;
}

.kbiz-line {
    flex: 1;
    height: 2px;
    background: linear-gradient(to right, #667eea, #764ba2);
    position: relative;
}

.kbiz-duration {
    position: absolute;
    bottom: 6px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 0.375rem;
    background: white;
    padding: 0.375rem 0.75rem;
    border-radius: 1rem;
    border: 1px solid #e2e8f0;
    white-space: nowrap;
    font-size: 0.875rem;
    font-weight: 600;
    color: #64748b;
}

.kbiz-clock-icon {
    width: 14px;
    height: 14px;
    color: #94a3b8;
}

.kbiz-flight-pricing {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 1rem;
    flex-shrink: 0;
}

.kbiz-price-wrapper {
    text-align: right;
}

.kbiz-price-label {
    display: block;
    font-size: 0.75rem;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.25rem;
    font-weight: 500;
}

.kbiz-price {
    display: flex;
    align-items: baseline;
    gap: 0.25rem;
    justify-content: flex-end;
}

.kbiz-currency {
    font-size: 1rem;
    font-weight: 600;
    color: #64748b;
}

.kbiz-amount {
    font-size: 2rem;
    font-weight: 700;
    color: #1e293b;
    letter-spacing: -0.025em;
}

.kbiz-select-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 0.875rem 1.75rem;
    border-radius: 0.75rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px -1px rgba(102, 126, 234, 0.3);
}

.kbiz-select-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(102, 126, 234, 0.4);
}

.kbiz-select-btn:active {
    transform: translateY(0);
}

.kbiz-btn-arrow {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}

.kbiz-select-btn:hover .kbiz-btn-arrow {
    transform: translateX(4px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .kbiz-flight-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .kbiz-flight-icon-wrapper {
        display: none;
    }

    .kbiz-flight-pricing {
        align-items: stretch;
    }

    .kbiz-price-wrapper {
        text-align: left;
    }

    .kbiz-price {
        justify-content: flex-start;
    }

    .kbiz-select-btn {
        width: 100%;
        justify-content: center;
    }

    .kbiz-route-info {
        gap: 1rem;
    }

    .kbiz-route-line {
        min-width: 80px;
    }

    .kbiz-code {
        font-size: 1.25rem;
    }

    .kbiz-time {
        font-size: 1rem;
    }

    .kbiz-amount {
        font-size: 1.5rem;
    }

    .kbiz-flight-subtitle {
        flex-wrap: wrap;
    }

    .kbiz-duration {
        font-size: 0.75rem;
        padding: 0.25rem 0.5rem;
        bottom: 6px;
    }

    .kbiz-clock-icon {
        width: 12px;
        height: 12px;
    }
}

.kbiz-stop-badge {
    font-size: 12px;
    padding: 4px 10px;
    border-radius: 999px;
    font-weight: 500;
    margin-left: 6px;
    display: inline-block;
}

/* Non-stop → Green */
.kbiz-stop-badge.nonstop {
    background-color: #e6f4ea;
    color: #137333;
}

/* 1+ stop → Orange */
.kbiz-stop-badge.stop {
    background-color: #fff4e5;
    color: #b45309;
}
