/* ─────────────────────────────────────────────────────────────────────
   RBM Related Vessels Widget
   ───────────────────────────────────────────────────────────────────── */

.rbm-rv-wrap {
    display: flex;
    flex-direction: column;
}

/* ─────────────────────────────── */
/* List */
/* ─────────────────────────────── */

.rbm-rv-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
}

/* ─────────────────────────────── */
/* Item Container */
/* ─────────────────────────────── */

.rbm-rv-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* ─────────────────────────────── */
/* Flag */
/* ─────────────────────────────── */

.rbm-rv-flag-wrap {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.rbm-rv-flag-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ─────────────────────────────── */
/* Content */
/* ─────────────────────────────── */

.rbm-rv-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.rbm-rv-vessel-name {
    font-weight: 600;
    margin: 0;
    padding: 0;
}

.rbm-rv-company {
    font-size: 0.9em;
    opacity: 0.8;
    margin: 0;
    padding: 0;
    margin-top: 2px;
}

/* ─────────────────────────────── */
/* No Data Message */
/* ─────────────────────────────── */

.rbm-rv-nodata {
    text-align: center;
    margin: 0;
    padding: 12px;
    color: #999;
}

/* ─────────────────────────────── */
/* Responsive */
/* ─────────────────────────────── */

@media (max-width: 768px) {
    .rbm-rv-item {
        gap: 8px;
    }

    .rbm-rv-flag-wrap {
        width: 28px;
        height: 28px;
    }

    .rbm-rv-vessel-name {
        font-size: 0.95em;
    }

    .rbm-rv-company {
        font-size: 0.85em;
    }
}
