﻿/**
 * PetMatchPro Setup Wizard
 *
 * Styles for the onboarding wizard. Uses WP admin color vars
 * where possible and avoids inline styles.
 *
 * @package PetMatchPro
 * @since   7.5.0
 */

/* =========================================================================
   LAYOUT
   ========================================================================= */

.pmp-wizard-wrap {
    max-width: 820px;
    margin: 20px auto;
    padding: 0;
}

.pmp-wizard-container {
    background: #fff;
    border: 1px solid #c3c4c7;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

/* =========================================================================
   HEADER
   ========================================================================= */

.pmp-wizard-header {
    padding: 24px 32px 16px;
    border-bottom: 1px solid #e0e0e0;
}

.pmp-wizard-title {
    font-size: 22px;
    font-weight: 600;
    margin: 0;
    color: #1d2327;
    display: flex;
    align-items: center;
    gap: 8px;
}

.pmp-wizard-title .dashicons {
    font-size: 28px;
    width: 28px;
    height: 28px;
    color: #2271b1;
}

.pmp-wizard-logo {
    width: 28px;
    height: 28px;
    object-fit: contain;
}

.pmp-wizard-title-suffix {
    font-weight: 400;
    color: #646970;
}

/* =========================================================================
   PROGRESS BAR
   ========================================================================= */

.pmp-wizard-progress {
    padding: 20px 32px 0;
}

.pmp-wizard-progress-bar {
    height: 4px;
    background: #e0e0e0;
    border-radius: 2px;
    overflow: hidden;
    margin-bottom: 16px;
}

.pmp-wizard-progress-fill {
    height: 100%;
    background: #2271b1;
    border-radius: 2px;
    transition: width 0.4s ease;
    width: 0;
}

.pmp-wizard-step-indicators {
    display: flex;
    gap: 4px;
    justify-content: center;
    flex-wrap: wrap;
}

.pmp-wizard-step-dot {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid #c3c4c7;
    background: #fff;
    cursor: default;
    transition: all 0.2s ease;
    padding: 0;
}

.pmp-wizard-step-dot .dashicons {
    font-size: 16px;
    width: 16px;
    height: 16px;
    color: #a7aaad;
}

.pmp-wizard-step-dot.active {
    border-color: #2271b1;
    background: #2271b1;
}

.pmp-wizard-step-dot.active .dashicons {
    color: #fff;
}

.pmp-wizard-step-dot.completed {
    border-color: #00a32a;
    background: #00a32a;
    cursor: pointer;
}

.pmp-wizard-step-dot.completed .dashicons {
    color: #fff;
}

.pmp-wizard-step-dot:not([disabled]):hover {
    transform: scale(1.1);
}

/* =========================================================================
   PANELS
   ========================================================================= */

.pmp-wizard-panels {
    padding: 0 32px;
}

.pmp-wizard-panel {
    display: none;
    padding: 24px 0;
    animation: pmpWizardFadeIn 0.3s ease;
}

.pmp-wizard-panel-active {
    display: block;
}

@keyframes pmpWizardFadeIn {
    from { opacity: 0; transform: translateY(8px); }
    to   { opacity: 1; transform: translateY(0); }
}

.pmp-wizard-step-title {
    font-size: 18px;
    font-weight: 600;
    color: #1d2327;
    margin: 0 0 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.pmp-wizard-step-title .dashicons {
    color: #2271b1;
    font-size: 22px;
    width: 22px;
    height: 22px;
}

.pmp-wizard-step-desc {
    color: #646970;
    font-size: 14px;
    margin: 0 0 24px;
    line-height: 1.5;
}

.pmp-wizard-step-note {
    color: #8c8f94;
    font-size: 13px;
    margin-top: 20px;
    font-style: italic;
}

/* =========================================================================
   FORM ELEMENTS
   ========================================================================= */

.pmp-wizard-field-group {
    margin-bottom: 20px;
}

.pmp-wizard-label {
    display: block;
    font-weight: 600;
    font-size: 13px;
    color: #1d2327;
    margin-bottom: 6px;
}

.pmp-wizard-required {
    color: #d63638;
    margin-left: 2px;
}

.pmp-wizard-input {
    width: 100%;
    max-width: 480px;
    padding: 8px 12px;
    font-size: 14px;
    border: 1px solid #8c8f94;
    border-radius: 4px;
    box-sizing: border-box;
    transition: border-color 0.15s ease;
}

.pmp-wizard-input:focus {
    border-color: #2271b1;
    box-shadow: 0 0 0 1px #2271b1;
    outline: none;
}

.pmp-wizard-select {
    max-width: 480px;
    padding: 8px 12px;
    font-size: 14px;
    border: 1px solid #8c8f94;
    border-radius: 4px;
}

/* =========================================================================
   ACTIONS ROW
   ========================================================================= */

.pmp-wizard-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 16px;
}

.pmp-wizard-actions .button {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.pmp-wizard-spinner {
    float: none;
    margin: 0;
    visibility: visible;
    opacity: 0;
    transition: opacity 0.15s ease;
}

.pmp-wizard-spinner.is-active {
    opacity: 1;
}

/* =========================================================================
   STEP 1: LICENSE
   ========================================================================= */

.pmp-wizard-license-active {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: #f0f6fc;
    border: 1px solid #c3d1e0;
    border-radius: 6px;
    margin-bottom: 20px;
}

.pmp-wizard-license-active > .dashicons {
    color: #00a32a;
    font-size: 28px;
    width: 28px;
    height: 28px;
}

.pmp-wizard-license-active-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.pmp-wizard-license-active-info strong {
    font-size: 15px;
    color: #1d2327;
}

.pmp-wizard-license-key-preview {
    font-size: 12px;
    color: #8c8f94;
    font-family: monospace;
}

/* =========================================================================
   STEP 2: PARTNER CARDS
   ========================================================================= */

.pmp-wizard-partner-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.pmp-wizard-partner-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 20px 12px;
    border: 2px solid #c3c4c7;
    border-radius: 8px;
    cursor: pointer;
    text-align: center;
    transition: all 0.2s ease;
    background: #fff;
}

.pmp-wizard-partner-card:hover {
    border-color: #2271b1;
    background: #f6f7f7;
}

.pmp-wizard-partner-card input[type=radio] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.pmp-wizard-partner-card .dashicons {
    font-size: 32px;
    width: 32px;
    height: 32px;
    color: #646970;
    transition: color 0.2s ease;
}

.pmp-wizard-partner-card-label {
    font-weight: 600;
    font-size: 14px;
    color: #1d2327;
}

.pmp-wizard-partner-card-desc {
    font-size: 12px;
    color: #8c8f94;
    line-height: 1.4;
}

.pmp-wizard-partner-selected {
    border-color: #2271b1;
    background: #f0f6fc;
    box-shadow: 0 0 0 1px #2271b1;
}

.pmp-wizard-partner-selected .dashicons {
    color: #2271b1;
}

/* Partner-conditional fields */
.pmp-wizard-partner-field {
    display: none;
}

/* =========================================================================
   STEP 3: METHOD TYPE CARDS
   ========================================================================= */

.pmp-wizard-method-cards {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.pmp-wizard-method-card {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 16px 20px;
    border: 2px solid #c3c4c7;
    border-radius: 8px;
    background: #fff;
    transition: all 0.2s ease;
}

.pmp-wizard-method-card-header {
    display: flex;
    align-items: center;
    gap: 10px;
}

.pmp-wizard-method-card-header .dashicons {
    font-size: 20px;
    width: 20px;
    height: 20px;
    color: #646970;
}

.pmp-wizard-method-card-header strong {
    font-size: 14px;
    color: #1d2327;
}

.pmp-wizard-method-card-desc {
    margin: 0;
    padding-left: 66px;
    font-size: 13px;
    color: #646970;
    line-height: 1.4;
}

.pmp-wizard-method-enabled {
    border-color: #2271b1;
    background: #f0f6fc;
}

.pmp-wizard-method-enabled .pmp-wizard-method-card-header .dashicons {
    color: #2271b1;
}

.pmp-wizard-method-always {
    border-color: #00a32a;
    background: #edfaef;
}

.pmp-wizard-method-always .pmp-wizard-method-card-header .dashicons {
    color: #00a32a;
}

/* Toggle switch inside method cards */
.pmp-wizard-method-toggle {
    position: relative;
    display: inline-block;
    width: 36px;
    height: 20px;
    flex-shrink: 0;
}

.pmp-wizard-method-toggle input {
    opacity: 0;
    width: 0;
    height: 0;
}

.pmp-wizard-method-toggle-slider {
    position: absolute;
    cursor: pointer;
    inset: 0;
    background: #c3c4c7;
    border-radius: 20px;
    transition: background 0.2s ease;
}

.pmp-wizard-method-toggle-slider::before {
    content: '';
    position: absolute;
    width: 16px;
    height: 16px;
    left: 2px;
    bottom: 2px;
    background: #fff;
    border-radius: 50%;
    transition: transform 0.2s ease;
}

.pmp-wizard-method-toggle input:checked + .pmp-wizard-method-toggle-slider {
    background: #2271b1;
}

.pmp-wizard-method-toggle input:checked + .pmp-wizard-method-toggle-slider::before {
    transform: translateX(16px);
}

.pmp-wizard-method-toggle input:disabled + .pmp-wizard-method-toggle-slider {
    cursor: default;
}

.pmp-wizard-method-always .pmp-wizard-method-toggle input:checked + .pmp-wizard-method-toggle-slider {
    background: #00a32a;
}

/* Badge labels */
.pmp-wizard-badge {
    font-size: 11px;
    padding: 2px 8px;
    border-radius: 10px;
    font-weight: 600;
    margin-left: auto;
}

.pmp-wizard-badge-included {
    background: #d4edda;
    color: #155724;
}

/* =========================================================================
   STEP 4: PRESET CARDS
   ========================================================================= */

.pmp-wizard-preset-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

.pmp-wizard-preset-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 16px 10px;
    border: 2px solid #c3c4c7;
    border-radius: 8px;
    cursor: pointer;
    text-align: center;
    transition: all 0.2s ease;
    background: #fff;
}

.pmp-wizard-preset-card:hover {
    border-color: #2271b1;
    background: #f6f7f7;
}

.pmp-wizard-preset-card input[type=radio] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.pmp-wizard-preset-card .dashicons {
    font-size: 28px;
    width: 28px;
    height: 28px;
    color: #646970;
    transition: color 0.2s ease;
}

.pmp-wizard-preset-card strong {
    font-size: 13px;
    color: #1d2327;
}

.pmp-wizard-preset-card-desc {
    font-size: 11px;
    color: #8c8f94;
    line-height: 1.3;
}

.pmp-wizard-preset-selected {
    border-color: #2271b1;
    background: #f0f6fc;
    box-shadow: 0 0 0 1px #2271b1;
}

.pmp-wizard-preset-selected .dashicons {
    color: #2271b1;
}

/* Locked preset cards (license gated) */
/* Preset preview area */
.pmp-wizard-preset-preview {
    margin-top: 20px;
    padding: 16px 20px;
    background: #f6f7f7;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    min-height: 60px;
}

.pmp-wizard-preset-preview-loading {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #646970;
    font-size: 13px;
}

.pmp-wizard-preset-summary {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.pmp-wizard-preset-section h4 {
    font-size: 13px;
    font-weight: 600;
    color: #1d2327;
    margin: 0 0 8px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.pmp-wizard-preset-section h4 .dashicons {
    font-size: 16px;
    width: 16px;
    height: 16px;
    color: #2271b1;
}

.pmp-wizard-preset-count {
    font-weight: 400;
    color: #8c8f94;
    font-size: 12px;
}

.pmp-wizard-preset-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.pmp-wizard-preset-tag {
    display: inline-block;
    padding: 3px 10px;
    background: #fff;
    border: 1px solid #c3c4c7;
    border-radius: 12px;
    font-size: 12px;
    color: #1d2327;
    white-space: nowrap;
}

/* =========================================================================
   RESULT MESSAGES
   ========================================================================= */

.pmp-wizard-license-result,
.pmp-wizard-connection-result,
.pmp-wizard-step-message {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    border-radius: 6px;
    font-size: 14px;
    margin-top: 16px;
    transition: opacity 0.3s ease;
}

.pmp-wizard-result-success {
    background: #edfaef;
    border: 1px solid #7ad18a;
    color: #00450b;
}

.pmp-wizard-result-success .dashicons {
    color: #00a32a;
}

.pmp-wizard-result-error {
    background: #fcf0f1;
    border: 1px solid #d63638;
    color: #8a1116;
}

.pmp-wizard-result-error .dashicons {
    color: #d63638;
}

.pmp-wizard-connection-meta {
    margin-left: auto;
    font-size: 12px;
    color: #646970;
    white-space: nowrap;
}

/* =========================================================================
   NAVIGATION BAR
   ========================================================================= */

.pmp-wizard-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 32px;
    border-top: 1px solid #e0e0e0;
    background: #f6f7f7;
    border-radius: 0 0 8px 8px;
}

.pmp-wizard-nav .button {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    min-height: 36px;
    padding: 0 16px;
}

.pmp-wizard-nav .button .dashicons {
    font-size: 18px;
    width: 18px;
    height: 18px;
}

.pmp-wizard-nav-status {
    font-size: 13px;
    color: #646970;
}

/* =========================================================================
   STEP 5: TEMPLATE SELECTION
   ========================================================================= */

.pmp-wizard-template-group {
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    padding: 16px 20px;
    margin-bottom: 16px;
}

.pmp-wizard-template-legend {
    font-weight: 600;
    font-size: 14px;
    color: #1d2327;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 0 4px;
}

.pmp-wizard-template-legend .dashicons {
    color: #2271b1;
    font-size: 18px;
    width: 18px;
    height: 18px;
}

.pmp-wizard-template-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 12px;
}

.pmp-wizard-template-half .pmp-wizard-select {
    width: 100%;
}

/* =========================================================================
   STEP 6: PAGE CREATION
   ========================================================================= */

.pmp-wizard-page-mode {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
}

.pmp-wizard-radio-card {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 14px 18px;
    border: 2px solid #c3c4c7;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    background: #fff;
}

.pmp-wizard-radio-card:hover {
    border-color: #2271b1;
    background: #f6f7f7;
}

.pmp-wizard-radio-card input[type=radio] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.pmp-wizard-radio-card .dashicons {
    font-size: 24px;
    width: 24px;
    height: 24px;
    color: #646970;
    margin-top: 2px;
    flex-shrink: 0;
    transition: color 0.2s ease;
}

.pmp-wizard-radio-card-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.pmp-wizard-radio-card-text strong {
    font-size: 14px;
    color: #1d2327;
}

.pmp-wizard-radio-card-text span {
    font-size: 12px;
    color: #8c8f94;
}

.pmp-wizard-radio-selected {
    border-color: #2271b1;
    background: #f0f6fc;
    box-shadow: 0 0 0 1px #2271b1;
}

.pmp-wizard-radio-selected .dashicons {
    color: #2271b1;
}

/* Page list preview */
.pmp-wizard-page-auto-preview h4 {
    font-size: 13px;
    font-weight: 600;
    color: #1d2327;
    margin: 0 0 10px;
}

.pmp-wizard-page-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.pmp-wizard-page-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 14px;
    background: #f6f7f7;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
}

.pmp-wizard-page-item-info {
    display: flex;
    align-items: center;
    gap: 10px;
}

.pmp-wizard-page-item-info .dashicons {
    font-size: 18px;
    width: 18px;
    height: 18px;
    color: #646970;
}

.pmp-wizard-page-item-info strong {
    font-size: 13px;
    color: #1d2327;
    display: block;
}

.pmp-wizard-page-item-info code {
    font-size: 11px;
    color: #8c8f94;
    background: #e0e0e0;
    padding: 1px 6px;
    border-radius: 3px;
}

.pmp-wizard-page-status {
    font-size: 12px;
    color: #8c8f94;
    white-space: nowrap;
}

.pmp-wizard-page-created {
    color: #00a32a;
    font-weight: 600;
}

.pmp-wizard-page-created a {
    color: #00a32a;
    text-decoration: none;
}

.pmp-wizard-page-created a:hover {
    text-decoration: underline;
}

/* Page result */
.pmp-wizard-page-result {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    border-radius: 6px;
    font-size: 14px;
    margin-top: 16px;
}

/* Field hint */
.pmp-wizard-field-hint {
    font-size: 12px;
    color: #8c8f94;
    margin-top: 4px;
    font-style: italic;
}

/* =========================================================================
   STEP 7: MESSAGES
   ========================================================================= */

.pmp-wizard-textarea {
    width: 100%;
    min-height: 60px;
    padding: 8px 12px;
    border: 1px solid #8c8f94;
    border-radius: 4px;
    font-size: 13px;
    font-family: inherit;
    resize: vertical;
    transition: border-color 0.2s ease;
}

.pmp-wizard-textarea:focus {
    border-color: #2271b1;
    box-shadow: 0 0 0 1px #2271b1;
    outline: none;
}

.pmp-wizard-field-separator {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #e0e0e0;
}

/* =========================================================================
   STEP 8: CONTACT INFO
   ========================================================================= */

.pmp-wizard-contact-grid {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.pmp-wizard-contact-grid .pmp-wizard-label {
    display: flex;
    align-items: center;
    gap: 6px;
}

.pmp-wizard-contact-grid .pmp-wizard-label .dashicons {
    font-size: 16px;
    width: 16px;
    height: 16px;
    color: #2271b1;
}

/* =========================================================================
   STEP 9: PERFORMANCE / STEP 10: ANALYTICS — Shared section styles
   ========================================================================= */

.pmp-wizard-perf-section {
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    padding: 16px 20px;
    margin-top: 16px;
    margin-bottom: 16px;
}

.pmp-wizard-perf-legend {
    font-weight: 600;
    font-size: 14px;
    color: #1d2327;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 0 4px;
}

.pmp-wizard-perf-legend .dashicons {
    color: #2271b1;
    font-size: 18px;
    width: 18px;
    height: 18px;
}

.pmp-wizard-perf-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 12px;
}

.pmp-wizard-toggle-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 12px;
    font-size: 14px;
    color: #1d2327;
}

.pmp-wizard-input-small {
    width: 100px;
}

/* =========================================================================
   STEP 11: COLOR PALETTE
   ========================================================================= */

.pmp-wizard-color-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 16px;
}

.pmp-wizard-color-field .pmp-wizard-label {
    margin-bottom: 6px;
}

.pmp-wizard-color-input-wrap {
    display: flex;
    align-items: center;
    gap: 8px;
}

.pmp-wizard-color-picker {
    width: 40px;
    height: 34px;
    padding: 2px;
    border: 1px solid #8c8f94;
    border-radius: 4px;
    cursor: pointer;
    background: none;
    flex-shrink: 0;
}

.pmp-wizard-color-hex {
    width: 90px;
    padding: 6px 8px;
    border: 1px solid #8c8f94;
    border-radius: 4px;
    font-size: 13px;
    font-family: monospace;
}

.pmp-wizard-color-hex:focus {
    border-color: #2271b1;
    box-shadow: 0 0 0 1px #2271b1;
    outline: none;
}

/* =========================================================================
   STEP 12: LICENSE SUMMARY (Free users)
   ========================================================================= */

.pmp-wizard-upgrade-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
}

.pmp-wizard-upgrade-card {
    border: 2px solid #c9a80b;
    border-radius: 8px;
    padding: 16px 20px;
    background: #fdf8e8;
}

.pmp-wizard-upgrade-card-preferred {
    border-color: #9b59b6;
    background: #f5f0fa;
}

.pmp-wizard-upgrade-badge {
    display: inline-block;
    padding: 3px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
    color: #fff;
    background: #c9a80b;
    margin-bottom: 10px;
}

.pmp-wizard-upgrade-badge-preferred {
    background: #9b59b6;
}

.pmp-wizard-upgrade-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.pmp-wizard-upgrade-list li {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: #1d2327;
}

.pmp-wizard-upgrade-list .dashicons {
    color: #00a32a;
    font-size: 16px;
    width: 16px;
    height: 16px;
}

/* =========================================================================
   STEP 13: LAUNCH SUMMARY
   ========================================================================= */

.pmp-wizard-launch-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.pmp-wizard-launch-header .dashicons {
    font-size: 32px;
    width: 32px;
    height: 32px;
    color: #00a32a;
}

.pmp-wizard-launch-header h3 {
    margin: 0;
    font-size: 20px;
    color: #1d2327;
}

.pmp-wizard-summary-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px 16px;
    padding: 16px;
    background: #f6f7f7;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    margin-bottom: 20px;
}

.pmp-wizard-summary-item {
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding: 6px 0;
}

.pmp-wizard-summary-label {
    font-size: 11px;
    font-weight: 600;
    color: #646970;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pmp-wizard-summary-value {
    font-size: 14px;
    color: #1d2327;
}

.pmp-wizard-launch-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.pmp-wizard-launch-btn,
.pmp-wizard-launch-btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.pmp-wizard-launch-btn-icon {
    width: 20px;
    height: 20px;
    object-fit: contain;
    vertical-align: middle;
}

.pmp-wizard-launch-btn-secondary .dashicons {
    font-size: 18px;
    width: 18px;
    height: 18px;
}

.pmp-wizard-summary-truncate {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    max-width: 220px;
    display: inline-block;
}

.pmp-wizard-step-placeholder {
    min-height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pmp-wizard-step-placeholder .pmp-wizard-step-desc {
    text-align: center;
    color: #a7aaad;
    font-style: italic;
}

/* =========================================================================
   UTILITIES
   ========================================================================= */

.pmp-wizard-hidden {
    display: none !important;
}

/* Admin notice on settings pages */
.pmp-wizard-notice .button {
    vertical-align: baseline;
}

/* =========================================================================
   RESPONSIVE
   ========================================================================= */

@media screen and (max-width: 782px) {
    .pmp-wizard-wrap {
        margin: 10px;
    }

    .pmp-wizard-header,
    .pmp-wizard-panels,
    .pmp-wizard-nav {
        padding-left: 20px;
        padding-right: 20px;
    }

    .pmp-wizard-progress {
        padding-left: 20px;
        padding-right: 20px;
    }

    .pmp-wizard-partner-cards {
        grid-template-columns: 1fr;
    }

    .pmp-wizard-preset-cards {
        grid-template-columns: repeat(2, 1fr);
    }

    .pmp-wizard-template-row {
        grid-template-columns: 1fr;
    }

    .pmp-wizard-perf-grid {
        grid-template-columns: 1fr;
    }

    .pmp-wizard-color-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .pmp-wizard-upgrade-grid {
        grid-template-columns: 1fr;
    }

    .pmp-wizard-summary-grid {
        grid-template-columns: 1fr;
    }

    .pmp-wizard-method-card-desc {
        padding-left: 0;
    }

    .pmp-wizard-step-indicators {
        gap: 2px;
    }

    .pmp-wizard-step-dot {
        width: 28px;
        height: 28px;
    }

    .pmp-wizard-step-dot .dashicons {
        font-size: 14px;
        width: 14px;
        height: 14px;
    }

    .pmp-wizard-input,
    .pmp-wizard-select {
        max-width: 100%;
    }

    .pmp-wizard-license-active {
        flex-wrap: wrap;
    }

    .pmp-wizard-connection-meta {
        display: block;
        margin-left: 0;
        margin-top: 4px;
    }
}