/* Reset ve genel stiller */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    background-color: #fff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

/* Başlık stili */
h1 {
    text-align: center;
    color: #1a1a1a;
    font-size: 36px;
    margin-bottom: 40px;
    font-weight: 600;
}

/* Uçuş bilgileri bölümü */
.flight-info {
    background-color: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.flight-info h2 {
    color: #333;
    font-size: 24px;
    margin-bottom: 20px;
    font-weight: 500;
    border-bottom: 2px solid #f0f0f0;
    padding-bottom: 10px;
}

.flight-info h2 i {
    margin-right: 10px;
    color: #007bff;
}

.flight-details {
    padding: 20px;
    background-color: #fafafa;
    border-radius: 8px;
    margin-top: 15px;
}

/* Tablo stilleri */
.flight-table {
    width: 100%;
    overflow-x: auto;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 10px;
}

th, td {
    padding: 12px 15px;
    text-align: left;
    border-bottom: 1px solid #e0e0e0;
}

th {
    background-color: #f8f9fa;
    font-weight: 600;
    color: #333;
}

tr:hover {
    background-color: #f5f5f5;
}

/* Responsive tasarım */
@media (max-width: 768px) {
    .container {
        padding: 20px 15px;
    }
    
    h1 {
        font-size: 28px;
        margin-bottom: 30px;
    }
    
    .flight-info {
        padding: 20px;
    }
    
    .flight-info h2 {
        font-size: 20px;
    }

    th, td {
        padding: 8px 10px;
        font-size: 14px;
    }
} 