/* ================================
   TravelBloomy AI Suite Styles
================================ */

.tb-container {
    max-width: 650px;
    margin: 40px auto;
    padding: 30px;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    font-family: 'Inter', sans-serif;
}

.tb-container h3 {
    margin-bottom: 20px;
    font-size: 22px;
    font-weight: 600;
    color: #1e293b;
}

.tb-container input,
.tb-container select {
    width: 100%;
    padding: 12px 14px;
    margin-bottom: 15px;
    border-radius: 10px;
    border: 1px solid #d1d5db;
    font-size: 14px;
    transition: 0.3s ease;
}

.tb-container input:focus,
.tb-container select:focus {
    border-color: #0ea5e9;
    outline: none;
    box-shadow: 0 0 0 3px rgba(14,165,233,0.2);
}

.tb-container button {
    width: 100%;
    padding: 13px;
    border-radius: 12px;
    border: none;
    background: linear-gradient(135deg, #0ea5e9, #0284c7);
    color: #fff;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: 0.3s ease;
}

.tb-container button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 18px rgba(14,165,233,0.3);
}

.tb-result-box {
    margin-top: 25px;
    padding: 20px;
    background: #f8fafc;
    border-radius: 12px;
    border-left: 4px solid #0ea5e9;
    white-space: pre-wrap;
    line-height: 1.6;
    font-size: 14px;
    color: #334155;
}

/* Loading animation */
.tb-loader {
    width: 30px;
    height: 30px;
    border: 4px solid #e2e8f0;
    border-top: 4px solid #0ea5e9;
    border-radius: 50%;
    animation: tb-spin 0.8s linear infinite;
    margin: 15px auto;
}

@keyframes tb-spin {
    100% { transform: rotate(360deg); }
}

/* Responsive */
@media (max-width: 600px) {
    .tb-container {
        margin: 20px;
        padding: 20px;
    }
}