.content {
    max-width: 1024px;
    margin: 0 auto;
    background: lightgray;
    padding: 10px;
    font-size: 14px;
    position: relative;
}

section.regular {
    max-width: 1200px;
    margin: 0 auto;
    padding: 10px;
    font-size: 14px;
}

h1 {
    text-align: center;
}

.panel {
    position: relative;
    background: white;
    border-radius: 3px;
    border: darkgray solid 1px;
    padding: 4px;
    margin-bottom: 10px;
}

.panel h2 {
    text-align: center;
}

.arrow-svg {
    vertical-align: bottom;
}

.panel_top_summary {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    text-align: center;
    gap: 10px;
    margin-bottom: 10px;
}

.panel_table {
    width: 100%;
    border-collapse: collapse;
}

.panel_table thead tr {
    background: #7dafe2;
}

.panel_table th {
    text-align: left;
}

.panel_table td, .panel_table th {
    padding: 4px;
}

.panel_table--alt tr:nth-child(even) {
    background-color: #eee;
}
.panel_table--div tr {
    border-bottom: 1px solid #eee;
}

i[class*=fa-exclamation-circle] {
    color: red;
}

i[class*=fa-exclamation-triangle] {
    color: yellow;
    text-shadow: 0 0 4px black;
}

.panel_google_map {
    height: 400px;
}

.panel_chart {
    height:400px;
}

.panel_button {
    background-color: rgb(255, 255, 255);
    border: 2px solid rgb(255, 255, 255);
    border-radius: 3px;
    box-shadow: rgba(0, 0, 0, 0.3) 0px 2px 6px;
    color: rgb(25, 25, 25);
    cursor: pointer; font-family: Roboto, Arial, sans-serif;
    font-size: 16px;
    line-height: 38px;
    margin: 8px;
    display: block;
    padding: 0px 5px;
    text-align: center;
}

.panel_button:hover {
    background-color: #eee;
}

.foqa_aircraft {
    max-width: 300px;
    margin:auto;
}

.footer_copyright a {
    color:white;
    text-decoration: underline;
}

.additional_links {
    position:absolute;
    right: 0;
    top: 0;
    padding: 20px;
}

.additional_links>* {
    line-height: 20px;
}

h2 select {
    font-size: 18px;
    font-weight: bold;
    border: 1px solid lightgrey;
    padding: 5px;
    border-radius: 6px;
}

/* Loading overlay styles */
.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999999;
}

.loading-spinner {
    text-align: center;
    color: #1a4a6b;
    background-color: rgba(255, 255, 255, 0.95);
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.loading-spinner i {
    margin-bottom: 10px;
    color: #1a4a6b;
    font-size: 24px;
    animation: spin 1s linear infinite;
}

.loading-spinner p {
    margin: 0;
    font-size: 14px;
    font-weight: 600;
    color: #1a4a6b;
}

/* Spinner animation */
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Navigation selection styles */
.foqa-nav-link {
    transition: background-color 0.2s ease;
}

.foqa-nav-link:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.foqa-nav-link.selected {
    background-color: rgba(255, 255, 255, 0.2);
    font-weight: 600;
}

/* Flight toggle button hover effect */
.flight-toggle:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

/* Smooth transitions for chevron rotation */
.chevron-icon {
    transition: transform 0.3s ease;
}

/* Loading state for turbo frame */
turbo-frame[busy] {
    opacity: 0.6;
    pointer-events: none;
}
