body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f9;
    margin: 0;
    padding: 20px;
}
h1 {
    text-align: center;
    margin-bottom: 30px;
}
.status-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    padding: 0 20px;
}
.status-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    padding: 20px;
    text-align: center;
    transition: transform 0.2s;
}
.status-card:hover {
    transform: translateY(-5px);
}
.airline-logo {
    width: 60px;
    height: 60px;
    object-fit: contain;
    margin-bottom: 10px;
}
.airline-name {
    font-size: 1.2em;
    font-weight: bold;
}
.airline-status {
    margin-top: 10px;
    padding: 5px 10px;
    border-radius: 20px;
    display: inline-block;
}
.status-operational {
    background-color: #d4edda;
    color: #155724;
}
.status-offline {
    background-color: #f8d7da;
    color: #721c24;
}
.loading {
    text-align: center;
    margin-top: 50px;
}
.loading img {
    width: 200px;
    height: 200px;
}
.logo {
    text-align: center;
    margin-top: 20px;
}
.logo img {
    width: 220px;
    height: auto;
}