/* Jet Location History Styles */
.jet-location-history-container {
    background: #ffffff;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.jet-location-history-title {
    font-size: 18px;
    font-weight: 600;
    color: #333333;
    margin-bottom: 15px;
    line-height: 1.4;
}

.jet-location-history-list {
    margin-bottom: 15px;
}

.jet-location-history-item {
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 6px;
    padding: 12px 16px;
    margin-bottom: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 14px;
    line-height: 1.4;
    color: #495057;
}

.jet-location-history-item:hover {
    background: #e9ecef;
    border-color: #007cba;
    transform: translateY(-1px);
}

.jet-location-history-item:active {
    transform: translateY(0);
}

.jet-location-history-empty {
    font-style: italic;
    padding: 10px;
    font-size: 14px;
}

/* Responsive design */
@media (max-width: 768px) {
    .jet-location-history-container {
        padding: 15px;
    }
    
    .jet-location-history-title {
        font-size: 16px;
        margin-bottom: 12px;
    }
    
    .jet-location-history-item {
        padding: 10px 14px;
        font-size: 13px;
    }
}