/* ==========================================================================
   DYNAMIC COMPONENTS (Places Cards and future widgets and components)
   ========================================================================== */

.choices-bubble {
    background: transparent !important;
    border: none !important;
    padding: 0 !important;
    max-width: 100% !important;
}

.places-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
    margin-top: 8px;
}

.place-card {
    background: var(--bg-soft);
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 14px 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    transition: background-color 0.3s ease, border-color 0.3s ease, opacity 0.3s ease;
}

.place-card:hover {
    border-color: var(--accent-cyan);
    background-color: rgba(0, 194, 255, 0.05);
}

.place-card.disabled {
    opacity: 0.5;
    pointer-events: none;
}

.place-info {
    display: flex;
    align-items: center;
    gap: 14px;
    overflow: hidden;
    flex-grow: 1;
}

.place-number {
    background: rgba(0, 194, 255, 0.1);
    border: 1px solid rgba(0, 194, 255, 0.2);
    border-radius: 50%;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    color: var(--accent-cyan);
    flex-shrink: 0;
}

.place-text {
    text-align: left;
    overflow: hidden;
}

.place-title {
    font-weight: 600;
    font-size: 15px;
    color: var(--text-bright);
    margin-bottom: 2px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.place-address {
    font-size: 13px;
    color: var(--text-mid);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.place-distance {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-mid);
    background: var(--bg);
    border: 1px solid var(--line);
    padding: 4px 10px;
    border-radius: 20px;
    flex-shrink: 0;
}