.gsc-bunker-overlay {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    background: rgba(5, 20, 38, 0.62);
}

.gsc-bunker-modal {
    width: min(100%, 430px);
    overflow: hidden;
    border-radius: 20px;
    background: #ffffff;
    box-shadow: 0 18px 48px rgba(5, 20, 38, 0.24);
}

.gsc-bunker-header {
    padding: 22px 24px;
    background: #0b2948;
    text-align: center;
}

.gsc-bunker-header h2 {
    margin: 0;
    color: #ffffff;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.2;
}

.gsc-bunker-content {
    padding: 30px 24px 26px;
}

.gsc-bunker-type {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.gsc-bunker-type-button {
    min-height: 52px;
    border: 2px solid #d4dbe2;
    border-radius: 12px;
    background: #ffffff;
    color: #0b2948;
    font: inherit;
    font-size: 17px;
    font-weight: 700;
    cursor: pointer;
}

.gsc-bunker-type-button.is-selected {
    border-color: #2e7d32;
    background: #2e7d32;
    color: #ffffff;
}

.gsc-bunker-stroke-control {
    display: grid;
    grid-template-columns: 58px minmax(90px, 1fr) 58px;
    align-items: center;
    gap: 18px;
    margin-top: 30px;
}

.gsc-bunker-adjust {
    width: 58px;
    height: 58px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: #e8f2e9;
    color: #2e7d32;
    font: inherit;
    font-size: 38px;
    font-weight: 400;
    line-height: 1;
    cursor: pointer;
}

.gsc-bunker-adjust span {
    display: block;
    transform: translateY(-2px);
}

.gsc-bunker-adjust:disabled {
    cursor: default;
    opacity: 0.35;
}

.gsc-bunker-stroke-value-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.gsc-bunker-stroke-value {
    color: #0b2948;
    font-size: 48px;
    font-weight: 700;
    line-height: 1;
}

.gsc-bunker-stroke-label {
    margin-top: 5px;
    color: #566573;
    font-size: 15px;
    font-weight: 600;
}

.gsc-bunker-footer {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    padding: 18px 20px 22px;
    border-top: 1px solid #e2e7eb;
}

.gsc-bunker-footer .gsc-button {
    width: 100%;
    min-width: 0;
    min-height: 46px;
    padding: 10px 8px;
    white-space: nowrap;
}

.gsc-bunker-button {
    background: #ffffff;
    color: #16385f;
    border: 1px solid #cfd8e3;
    border-radius: 12px;
    box-shadow: none;
    transition:
        background-color 0.15s ease,
        color 0.15s ease,
        border-color 0.15s ease;
}

.gsc-bunker-footer .gsc-bunker-button:hover,
.gsc-bunker-footer .gsc-bunker-button:focus-visible {
    border-color: #2e7d32;
}

.gsc-bunker-button:active {
    background: #2e7d32;
    color: #ffffff;
    border-color: #2e7d32;
}

.gsc-bunker-cancel,
.gsc-bunker-add-another {
    font-size: 15px;
    font-weight: 600;
}

/* ==========================================================
   Current Bunkers
   ========================================================== */

.gsc-bunker-current {
    margin-bottom: 24px;
}

.gsc-bunker-current h3 {
    margin: 0 0 10px;
    color: #0b2948;
    font-size: 17px;
    font-weight: 700;
}

.gsc-bunker-current-list {
    border: 1px solid #e2e7eb;
    border-radius: 12px;
    background: #f8fafb;
    overflow: hidden;
}

.gsc-bunker-current-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 14px;
    border-bottom: 1px solid #e2e7eb;
}

.gsc-bunker-current-item:last-child {
    border-bottom: none;
}

.gsc-bunker-remove {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    padding: 0;
    border: 1px solid #d4dbe2;
    border-radius: 50%;
    background: #ffffff;
    color: #566573;
    font-size: 18px;
    font-weight: 600;
    line-height: 28px;
    cursor: pointer;
}

.gsc-bunker-remove:hover {
    border-color: #2e7d32;
    color: #2e7d32;
}

.gsc-bunker-none {
    padding: 14px;
    color: #7b8794;
    text-align: center;
    font-style: italic;
}

@media (max-width: 390px) {
    .gsc-bunker-overlay {
        padding: 16px;
    }

    .gsc-bunker-content {
        padding-right: 18px;
        padding-left: 18px;
    }

.gsc-bunker-footer {
    grid-template-columns: 1fr 1fr;
    gap: 7px;
        padding-right: 14px;
        padding-left: 14px;
    }

    .gsc-bunker-footer .gsc-button {
        padding-right: 5px;
        padding-left: 5px;
    }

    .gsc-bunker-cancel,
    .gsc-bunker-add-another {
        font-size: 13px;
    }
}