/* استایل‌های فرانت‌اند بلیط یاب مدرن */

.belityab-search-form {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 20px;
    margin: 20px 0;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.belityab-search-form h3 {
    margin-top: 0;
    margin-bottom: 20px;
    color: #333;
    font-size: 18px;
}

.form-row {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.form-group {
    flex: 1;
    min-width: 200px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    color: #555;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 8px 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 14px;
    box-sizing: border-box;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #007cba;
    box-shadow: 0 0 0 2px rgba(0,124,186,0.2);
}

.form-submit {
    text-align: center;
    margin-top: 20px;
}

.form-submit button {
    background: #007cba;
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s;
}

.form-submit button:hover {
    background: #005a87;
}

.belityab-results {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 20px;
    margin: 20px 0;
}

.flight-item {
    border: 1px solid #eee;
    border-radius: 6px;
    padding: 15px;
    margin-bottom: 15px;
    background: #f9f9f9;
}

.flight-item:hover {
    background: #f0f0f0;
}

.flight-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.airline-name {
    font-weight: bold;
    color: #333;
}

.flight-number {
    color: #666;
    font-size: 14px;
}

.flight-times {
    display: flex;
    gap: 20px;
    margin-bottom: 10px;
}

.time-item {
    text-align: center;
}

.time-label {
    font-size: 12px;
    color: #666;
    margin-bottom: 5px;
}

.time-value {
    font-size: 16px;
    font-weight: bold;
    color: #333;
}

.flight-price {
    text-align: right;
}

.price-amount {
    font-size: 18px;
    font-weight: bold;
    color: #007cba;
}

.price-currency {
    font-size: 14px;
    color: #666;
}

/* Responsive */
@media (max-width: 768px) {
    .form-row {
        flex-direction: column;
    }
    
    .form-group {
        min-width: auto;
    }
    
    .flight-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .flight-times {
        flex-direction: column;
        gap: 10px;
    }
}