.plan-delivery-actions {
    display: grid;
    grid-template-columns: minmax(190px, 1.25fr) minmax(88px, 0.75fr) minmax(88px, 0.75fr);
    gap: 10px;
    width: min(100%, 535px);
    max-width: 100%;
    margin-top: 20px;
    align-self: start;
}

.plan-delivery-btn {
    min-height: 40px;
    width: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    padding: 8px 10px;
    border-radius: 8px;
    border: 1px solid rgba(255, 196, 0, 0.26);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.035)),
        rgba(24, 24, 24, 0.96);
    color: #f4f4f4;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06), 0 10px 24px rgba(0, 0, 0, 0.16);
    cursor: pointer;
    font-size: 12.5px;
    font-weight: 850;
    line-height: 1.2;
    text-align: center;
    text-decoration: none;
    white-space: normal;
    transition: transform 0.16s ease, border-color 0.16s ease, background 0.16s ease, box-shadow 0.16s ease, color 0.16s ease;
}

.plan-delivery-btn .dashicons {
    width: 16px;
    height: 16px;
    color: #ffc400;
    flex: 0 0 16px;
    font-size: 16px;
    line-height: 1;
}

.plan-delivery-btn:hover {
    transform: translateY(-1px);
    border-color: rgba(255, 196, 0, 0.62);
    background:
        linear-gradient(180deg, rgba(255, 196, 0, 0.12), rgba(255, 255, 255, 0.045)),
        rgba(28, 28, 28, 0.98);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 14px 28px rgba(0, 0, 0, 0.22);
    color: #fff;
}

.plan-delivery-btn:focus-visible {
    outline: 2px solid #ffc400;
    outline-offset: 2px;
}

.ctp-send-plan-modal .modal-content {
    max-width: 620px;
    border: 1px solid rgba(255, 196, 0, 0.24);
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.52);
}

.ctp-send-plan-modal.is-sending .modal-content {
    pointer-events: none;
    opacity: 0.78;
}

.ctp-send-plan-summary {
    padding: 16px;
    margin-bottom: 16px;
    background: linear-gradient(135deg, rgba(255, 196, 0, 0.12), rgba(255, 255, 255, 0.03));
    border: 1px solid rgba(255, 196, 0, 0.22);
    border-radius: 12px;
}

.ctp-send-plan-summary__label {
    display: block;
    margin-bottom: 5px;
    color: #b8b8b8;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.1px;
    text-transform: uppercase;
}

.ctp-send-plan-summary strong {
    display: block;
    color: #fff;
    font-size: 19px;
    line-height: 1.25;
}

.ctp-send-plan-summary small {
    display: block;
    margin-top: 7px;
    color: #b8b8b8;
    line-height: 1.45;
}

.ctp-send-plan-field {
    display: grid;
    gap: 7px;
    margin-bottom: 16px;
}

.ctp-send-plan-field label {
    color: #f5f5f5;
    font-size: 13px;
    font-weight: 800;
}

.ctp-send-plan-field input {
    width: 100%;
    min-height: 44px;
    padding: 11px 13px;
    color: #fff;
    background: #1f1f1f;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    box-sizing: border-box;
    font-size: 14px;
    outline: none;
}

.ctp-send-plan-field input:focus {
    border-color: rgba(255, 196, 0, 0.55);
    box-shadow: 0 0 0 3px rgba(255, 196, 0, 0.12);
}

.ctp-send-plan-field small {
    color: #aaa;
    font-size: 12px;
    line-height: 1.4;
}

.ctp-send-plan-options {
    display: grid;
    gap: 10px;
    margin-bottom: 16px;
}

.ctp-send-plan-options__title {
    color: #f5f5f5;
    font-size: 13px;
    font-weight: 800;
}

.ctp-send-plan-check {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 13px 14px;
    margin: 0;
    background: #1f1f1f;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    cursor: pointer;
    transition: border-color 0.16s ease, background 0.16s ease, transform 0.16s ease;
}

.ctp-send-plan-check:hover {
    transform: translateY(-1px);
    background: #242424;
    border-color: rgba(255, 196, 0, 0.3);
}

.ctp-send-plan-check input {
    width: 18px;
    height: 18px;
    margin-top: 2px;
    accent-color: #ffc400;
}

.ctp-send-plan-check strong {
    display: block;
    color: #fff;
    font-size: 14px;
}

.ctp-send-plan-check small {
    display: block;
    margin-top: 3px;
    color: #aaa;
    font-size: 12px;
    line-height: 1.35;
}

.ctp-send-plan-note {
    padding: 12px 14px;
    color: #bdbdbd;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 10px;
    font-size: 13px;
    line-height: 1.5;
}

.ctp-send-plan-submit {
    min-width: 190px;
}

@media (max-width: 600px) {
    .plan-delivery-actions {
        grid-template-columns: 1fr;
    }
}
