body {
    font-family: "Roboto Mono", monospace;
    background-color: #0d253f;
    background-image: radial-gradient(circle at center, rgba(10, 55, 105, 0.6), rgba(5, 25, 50, 0.9));
    color: #ffffff;
}

.site-header {
    background-color: #0a3459;
    padding: 0.2rem 0;
}

.main-title {
    margin-top: 2rem;
}

.description {
    margin-top: 1rem;
}

.countries-section {
    margin-top: 2rem;
}

.footer {
    background-color: #052639;
    padding: 1rem 0;
    margin-top: 2rem;
}

input[type="text"] {
    background-color: rgba(255, 255, 255, 0.1);
    border: none;
    color: #ffffff;
}

input[type="text"]:focus {
    outline: none;
    box-shadow: none;
}

.search-btn {
    background-color: #1c5173;
    border: none;
    color: #ffffff;
}

.search-btn:hover {
    background-color: #2468a1;
}

.atis-panel {
    background-color: rgba(28, 81, 115, 0.8);
    padding: 1rem;
    border-radius: 8px;
}

.panel {
    background-color: #1c5173;
    border-radius: 15px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 2rem;
    position: relative;
}

.ident-badge {
    position: absolute;
    top: -20px;
    right: -20px;
    background-color: #ff5e5e;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
}

.current-time {
    position: absolute;
    bottom: 10px;
    right: 10px;
    font-size: 0.9rem;
}

/* Decoded ATIS table styles */
.decoded-atis {
    width: 100%;
    border-collapse: collapse;
    margin-top: 1rem;
}

.decoded-atis th,
.decoded-atis td {
    padding: 0.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-align: left;
}

.decoded-atis th {
    background-color: #1c5173;
    color: #ffffff;
}

.decoded-atis tbody tr:nth-child(odd) {
    background-color: rgba(255, 255, 255, 0.1);
}

.decoded-atis tbody tr:nth-child(even) {
    background-color: rgba(255, 255, 255, 0.05);
}

.disclaimer {
    font-size: 0.9rem;
    font-weight: bold;
    color: #ff5e5e;
    margin-top: 1rem;
    text-align: center;
}
