/**
 * All of the CSS for your public-facing functionality should be
 * included in this file.
 */
/*.flight-tracker {

    #main {

        padding: 3rem 0;
    }

    .entry-header {

        text-align: center !important;
        margin-bottom: 4rem;

        .flight-status {

            display: inline-block;
            padding: 4px 8px;
            border-radius: 4px;
            color: #F9F9F9;
            text-transform: uppercase;
            font-weight: 600;
            letter-spacing: 0.09em;
            margin: 0;
        }
    }

    .flight-info-grid {

        > div {

            display: flex;
            flex-direction: column;
            gap: 0.5em;

            > * {

                margin: 0;
            }
        }
    }

    .flight-additional-info {

        h2 {
            margin-top: 0;
            margin-bottom: 1rem;
            color: #333;
        }

        .progress-info {

            .progress-bar {
                background: #e9ecef;
                border-radius: 10px;
                height: 20px;
                margin: 5px 0;
                overflow: hidden;

                .progress-fill {
                    background: linear-gradient(90deg, #28a745, #20c997);
                    height: 100%;
                    border-radius: 10px;
                    transition: width 0.3s ease;
                    min-width: 2px; // Ensure visibility even at 0%
                }
            }
        }

        .aircraft-info,
        .distance-info {

            p {
                margin: 5px 0;

                &:first-child {
                    margin-bottom: 8px;
                }
            }
        }

        // Responsive grid
        @media (max-width: 768px) {
            > div {
                grid-template-columns: 1fr;
            }
        }
    }
}*/
