/* ──────────────────────────────────────────────
   RBM Port Schedule Widget
   ────────────────────────────────────────────── */

.rbm-ps-wrap {
    overflow: auto;
    width: 100%;
    box-sizing: border-box;
}

/* Table */
.rbm-ps-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}

/* Header */
.rbm-ps-table thead tr {
    background-color: #1a1a2e;
}

.rbm-ps-table thead th {
    color: #ffffff;
    font-weight: 600;
    text-align: left;
    padding: 10px 14px;
    white-space: nowrap;
}

/* Body rows */
.rbm-ps-table tbody tr {
    border-bottom: 1px solid #e9e9e9;
    transition: background-color 0.15s ease;
}

.rbm-ps-table tbody tr:nth-child(even) {
    background-color: #f8f8f8;
}

.rbm-ps-table tbody tr:hover {
    background-color: #f0f4ff;
}

.rbm-ps-table tbody td {
    padding: 10px 14px;
    color: #333333;
    vertical-align: middle;
}

/* Date column */
.rbm-ps-table td.rbm-ps-date {
    white-space: nowrap;
    font-variant-numeric: tabular-nums;
}

/* Ship column */
.rbm-ps-table td.rbm-ps-ship {
    font-weight: 600;
}

/* Arrival / Departure columns */
.rbm-ps-table td.rbm-ps-arrival,
.rbm-ps-table td.rbm-ps-departure {
    white-space: nowrap;
    font-variant-numeric: tabular-nums;
}

/* RB Mobile column */
.rbm-ps-table td.rbm-ps-rb {
    text-align: center;
}

/* Icon inside RB Mobile cell */
.rbm-ps-rb-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #2ecc71;
    line-height: 1;
}

.rbm-ps-rb-icon svg {
    width: 20px;
    height: 20px;
    fill: #2ecc71;
}

.rbm-ps-rb-icon svg path {
    fill: inherit;
}

/* No-data message */
.rbm-ps-nodata {
    padding: 20px;
    text-align: center;
    color: #888888;
    font-size: 14px;
}
