.bb_queue {
    max-width: 1100px;
    margin: 2rem auto;
    padding: 0 1rem;
    font-family: system-ui, sans-serif;
}

/* HEADER */
.bb_queue-header {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.bb_queue-title h1 {
    margin: 0;
    font-size: 2rem;
}

.bb_queue-title p {
    margin: .25rem 0 0;
    color: #555;
}

/* CTA */
.bb_queue-add {
    text-decoration: none;
    font-size: .95rem;
    padding: .6rem 1rem;
    border-radius: 8px;
    background: #1e88e5;
    color: #fff;
    white-space: nowrap;
    box-shadow: 0 2px 6px rgba(0,0,0,.15);
}

.bb_queue-add:hover {
    background: #1565c0;
}

/* LISTA */
.bb_queue-list {
    display: grid;
    gap: 1rem;
}

/* ITEM */
.bb_queue-item {
    background: #f7f7f7;
    border-radius: 10px;
    padding: 1rem;
    box-shadow: 0 2px 6px rgba(0,0,0,.05);
}

.bb_queue-item-header h2 {
    margin: 0;
    font-size: 1.3rem;
}

.bb_queue-location {
    font-size: .9rem;
    color: #666;
}

/* DATA GRID */
.bb_queue-data {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1rem;
    margin: 1rem 0;
    font-size: .9rem;
}

/* FOOTER */
.bb_queue-footer {
    display: flex;
    flex-wrap: wrap;
    gap: .75rem;
    justify-content: space-between;
    align-items: center;
}

.bb_queue-meta {
    font-size: .8rem;
    color: #666;
}

/* ACTIONS */
.bb_queue-actions a {
    text-decoration: none;
    font-size: .85rem;
    padding: .35rem .7rem;
    border-radius: 6px;
    margin-left: .4rem;
    background: #e0e0e0;
    color: #000;
}

.bb_queue-actions .bb_accept {
    background: #2e7d32;
    color: #fff;
}

.bb_queue-actions .bb_warn {
    background: #fdd;
}

/* MOBILE */
@media (max-width: 640px) {
    .bb_queue-add {
        width: 100%;
        text-align: center;
    }
}