/* Chat Window - Minimize & Fold */
.chat-window.minimized {
    height: 52px !important;
    overflow: hidden;
    transition: height 0.3s ease;
}

.chat-header {
    cursor: pointer;
}

.header-btns {
    display: flex;
    gap: 8px;
    align-items: center;
}

.chat-header .header-btn {
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: white;
    width: 28px;
    height: 28px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
}

.chat-header .header-btn:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* Result Banner Folding */
.fare-result-area {
    padding: 0 !important;
    overflow: hidden;
}

.banner-ctrl {
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    background: rgba(0, 0, 0, 0.05);
}

#result-body-content {
    padding: 20px;
    transition: max-height 0.3s ease;
}

.fare-result-area.folded #result-body-content {
    display: none;
}

.toggle-btn {
    background: none;
    border: none;
    color: white;
    font-size: 1.1rem;
    cursor: pointer;
}