.nmvt-wrapper {
    display: grid;
    grid-template-columns: minmax(0, 2fr) minmax(320px, 1fr);
    gap: 18px;
    width: 100%;
    margin: 20px 0;
    font-family: inherit;
}

.nmvt-main,
.nmvt-sidebar {
    min-width: 0;
}

.nmvt-map-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    background: #ffffff;
    border: 1px solid #e7e7e7;
    border-radius: 14px 14px 0 0;
    padding: 12px 14px;
}

.nmvt-zone-label {
    display: block;
    color: #667085;
    font-size: 13px;
    margin-top: 2px;
}

.nmvt-updated {
    color: #667085;
    font-size: 12px;
    text-align: right;
}

.nmvt-map {
    width: 100%;
    min-height: 480px;
    background: #edf4f7;
    border-radius: 0 0 14px 14px;
    overflow: hidden;
    border: 1px solid #e7e7e7;
    border-top: none;
}

.nmvt-sidebar {
    background: #ffffff;
    border: 1px solid #e7e7e7;
    border-radius: 14px;
    padding: 14px;
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.07);
    max-height: 720px;
    overflow-y: auto;
}

.nmvt-filters {
    display: grid;
    gap: 10px;
    margin-bottom: 12px;
}

.nmvt-filters label {
    display: grid;
    gap: 5px;
    color: #344054;
    font-size: 13px;
    font-weight: 600;
}

.nmvt-filters input,
.nmvt-filters select {
    width: 100%;
    border: 1px solid #d0d5dd;
    border-radius: 10px;
    padding: 9px 10px;
    font-size: 14px;
    background: #ffffff;
}

.nmvt-status-box {
    border-radius: 10px;
    padding: 10px 12px;
    margin: 10px 0;
    font-size: 13px;
    background: #f2f4f7;
    color: #344054;
}

.nmvt-status-success {
    background: #ecfdf3;
    color: #027a48;
}

.nmvt-status-warning {
    background: #fffaeb;
    color: #b54708;
}

.nmvt-status-error {
    background: #fef3f2;
    color: #b42318;
}

.nmvt-vessel-count {
    color: #667085;
    font-size: 13px;
    margin: 8px 0 12px;
}

.nmvt-vessel-list {
    display: grid;
    gap: 10px;
}

.nmvt-card {
    border: 1px solid #eaecf0;
    border-radius: 12px;
    padding: 12px;
    background: #fcfcfd;
    cursor: pointer;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.nmvt-card:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 20px rgba(15, 23, 42, 0.08);
}

.nmvt-card-head {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 10px;
}

.nmvt-card-head strong {
    color: #101828;
    font-size: 15px;
}

.nmvt-card-head span {
    color: #175cd3;
    background: #eff8ff;
    border-radius: 999px;
    padding: 3px 8px;
    font-size: 12px;
    white-space: nowrap;
}

.nmvt-card-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-bottom: 8px;
}

.nmvt-card-grid div {
    background: #ffffff;
    border: 1px solid #f2f4f7;
    border-radius: 8px;
    padding: 7px;
}

.nmvt-card-grid small {
    display: block;
    color: #667085;
    font-size: 11px;
}

.nmvt-card-grid b {
    color: #101828;
    font-size: 13px;
}

.nmvt-card p {
    margin: 5px 0 0;
    color: #475467;
    font-size: 13px;
}

.nmvt-empty {
    color: #667085;
    padding: 12px;
    background: #f9fafb;
    border-radius: 10px;
}

.nmvt-vessel-icon span {
    display: grid;
    place-items: center;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #175cd3;
    color: #fff;
    font-size: 13px;
    box-shadow: 0 4px 12px rgba(23, 92, 211, 0.35);
}

.nmvt-popup {
    min-width: 190px;
    font-size: 13px;
}

@media (max-width: 920px) {
    .nmvt-wrapper {
        grid-template-columns: 1fr;
    }

    .nmvt-sidebar {
        max-height: none;
    }
}
