/**
 * Public Styles - Clean & Mobile Responsive
 */

/* Reset and Base */
.activity-booking-wizard {
    max-width: 900px;
    margin: 0 auto;
    padding: 30px 20px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
}

/* Progress Bar - Horizontal with connected line */
.activity-wizard-progress {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    margin-bottom: 50px;
    position: relative;
    padding: 0 20px;
}

.activity-progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 1;
    flex: 0 0 auto;
    padding: 0 40px;
}

/* Connector line between steps */
.activity-progress-step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 20px;
    left: calc(50% + 25px);
    width: calc(100% - 10px);
    height: 2px;
    background: #e0e0e0;
    z-index: 0;
}

.activity-progress-step.completed:not(:last-child)::after {
    background: #667eea;
}

.activity-progress-step .step-number {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #f5f5f5;
    border: 2px solid #e0e0e0;
    color: #999;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.activity-progress-step.active .step-number {
    background: #667eea;
    border-color: #667eea;
    color: #fff;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.35);
}

.activity-progress-step.completed .step-number {
    background: #667eea;
    border-color: #667eea;
    color: #fff;
}

.activity-progress-step .step-label {
    margin-top: 12px;
    font-size: 13px;
    color: #888;
    text-align: center;
    font-weight: 500;
}

.activity-progress-step.active .step-label {
    color: #667eea;
    font-weight: 600;
}

.activity-progress-step.completed .step-label {
    color: #667eea;
}

/* Step Content */
.activity-wizard-step {
    display: none;
    animation: fadeIn 0.3s ease;
}

.activity-wizard-step.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.activity-wizard-step h2 {
    margin: 0 0 8px;
    color: #1e1e1e;
    font-size: 26px;
    font-weight: 700;
}

.activity-step-desc {
    color: #666;
    margin: 0 0 30px;
    font-size: 15px;
}

/* Category Grid - Horizontal Row */
.activity-category-grid {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    gap: 20px !important;
    justify-content: flex-start !important;
    align-items: stretch !important;
}

.activity-category-card {
    cursor: pointer;
    display: block !important;
    flex: 1 1 0 !important;
    min-width: 0 !important;
    max-width: 25% !important;
}

.activity-category-card input[type="radio"] {
    position: absolute !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

.activity-category-content {
    background: #fff;
    border: 2px solid #e8e8e8;
    border-radius: 16px;
    padding: 30px 15px;
    text-align: center;
    transition: all 0.25s ease;
    cursor: pointer;
    min-height: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.activity-category-content:hover {
    border-color: #c5cae9;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.12);
}

.activity-category-card input[type="radio"]:checked+.activity-category-content {
    border-color: #667eea;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.06), rgba(118, 75, 162, 0.04));
    box-shadow: 0 4px 16px rgba(102, 126, 234, 0.18);
}

.activity-category-icon {
    font-size: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 56px;
}

.activity-category-icon .category-icon-img {
    width: 56px;
    height: 56px;
    object-fit: contain;
}

.activity-category-name {
    font-weight: 600;
    color: #333;
    font-size: 15px;
}

/* Date & Time */
.activity-datetime-container {
    display: grid;
    gap: 25px;
}

.activity-date-picker-wrap label,
.activity-slots-container label {
    display: block;
    font-weight: 600;
    margin-bottom: 10px;
    color: #333;
}

/* Inline Calendar Styles */
.activity-inline-calendar-wrap {
    background: #fff;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.activity-calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding: 10px 15px;
    background: linear-gradient(135deg, #667eea, #5a67d8);
    border-radius: 8px;
    color: #fff;
}

.activity-calendar-month {
    font-weight: 700;
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.activity-calendar-nav {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: #fff;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.activity-calendar-nav:hover {
    background: rgba(255, 255, 255, 0.4);
    transform: scale(1.1);
}

.activity-calendar-weekdays {
    display: grid !important;
    grid-template-columns: repeat(7, 1fr) !important;
    gap: 5px;
    margin-bottom: 10px;
    text-align: center;
    width: 100% !important;
}

.activity-calendar-weekdays span {
    font-weight: 600;
    font-size: 12px;
    color: #666;
    padding: 10px 0;
    text-transform: uppercase;
}

.activity-calendar-weekdays span.weekend {
    color: #c9a227;
}

.activity-calendar-days {
    display: grid !important;
    grid-template-columns: repeat(7, 1fr) !important;
    gap: 5px;
    width: 100% !important;
}

.activity-calendar-day {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 500;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.2s ease;
    border: 2px solid transparent;
}

.activity-calendar-day:hover:not(.disabled):not(.empty) {
    background: rgba(201, 162, 39, 0.1);
    border-color: #c9a227;
}

.activity-calendar-day.empty {
    cursor: default;
}

.activity-calendar-day.disabled {
    color: #ccc;
    cursor: not-allowed;
}

.activity-calendar-day.today {
    border: 2px solid #c9a227;
    font-weight: 700;
}

.activity-calendar-day.selected {
    background: linear-gradient(135deg, #c9a227, #b8941f);
    color: #fff;
    font-weight: 700;
    border-color: #c9a227;
    box-shadow: 0 4px 10px rgba(201, 162, 39, 0.4);
}

.activity-calendar-day.weekend:not(.selected) {
    color: #c9a227;
}

.activity-time-slots-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 10px;
}

.activity-time-slot {
    background: #fff;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    padding: 15px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.activity-time-slot:hover:not(.disabled) {
    border-color: #667eea;
    transform: translateY(-2px);
}

.activity-time-slot.selected {
    border-color: #667eea;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1), rgba(118, 75, 162, 0.1));
}

.activity-time-slot.disabled {
    opacity: 0.5;
    cursor: not-allowed;
    background: #f5f5f5;
}

.activity-slot-time {
    display: block;
    font-weight: 600;
    color: #333;
    font-size: 14px;
}

.activity-slot-status {
    display: block;
    font-size: 12px;
    color: #28a745;
    margin-top: 5px;
}

.activity-time-slot.disabled .activity-slot-status {
    color: #dc3545;
}

/* Products */
.activity-available-info {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: #fff;
    padding: 15px 20px;
    border-radius: 10px;
    margin-bottom: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.activity-products-grid {
    display: grid;
    gap: 15px;
}

.activity-product-card {
    background: #fff;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 15px;
    transition: all 0.3s ease;
}

.activity-product-card:hover {
    border-color: #667eea;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.activity-product-info {
    flex: 1;
    min-width: 0;
}

.activity-product-info h4 {
    margin: 0 0 5px;
    font-size: 16px;
    color: #333;
}

.activity-product-desc {
    font-size: 13px;
    color: #666;
    line-height: 1.4;
}

.activity-desc-toggle {
    color: #667eea;
    font-size: 12px;
    cursor: pointer;
    font-weight: 500;
    text-decoration: none;
}

.activity-desc-toggle:hover {
    text-decoration: underline;
}

.activity-product-desc-wrap {
    margin-bottom: 8px;
}

.activity-product-price {
    color: #667eea;
    font-weight: 600;
}

.activity-product-qty-wrap {
    display: flex;
    align-items: center;
    gap: 5px;
    flex-shrink: 0;
}

.activity-qty-btn {
    width: 36px;
    height: 36px;
    border: none;
    border-radius: 8px;
    background: linear-gradient(135deg, #667eea, #5a67d8);
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.activity-qty-btn:hover {
    background: linear-gradient(135deg, #5a67d8, #4c51bf);
    color: #fff;
    transform: scale(1.05);
}

.activity-product-qty {
    width: 50px;
    height: 36px;
    text-align: center;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
}

.activity-quantity-summary {
    background: #f8f9fa;
    padding: 15px 20px;
    border-radius: 10px;
    margin-top: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.activity-capacity-error {
    color: #dc3545;
    font-weight: 600;
    margin-left: auto;
}

/* Summary */
.activity-summary-card {
    background: #fff;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 25px;
}

.activity-summary-card h3 {
    margin: 0 0 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.activity-summary-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #f0f0f0;
}

.activity-summary-row label {
    color: #666;
}

.activity-summary-row span {
    font-weight: 600;
    color: #333;
}

.activity-summary-total {
    border-bottom: none;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 2px solid #e0e0e0;
}

.activity-summary-total span {
    font-size: 18px;
    color: #667eea;
}

/* Payment Options */
.activity-payment-options h3 {
    margin: 0 0 15px;
}

.activity-payment-option {
    display: block;
    background: #fff;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.activity-payment-option input {
    display: none;
}

.activity-payment-option:has(input:checked) {
    border-color: #667eea;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1), rgba(118, 75, 162, 0.1));
}

.activity-option-title {
    display: block;
    font-weight: 600;
    color: #333;
    margin-bottom: 5px;
}

.activity-option-desc {
    font-size: 14px;
    color: #666;
}

/* Navigation */
.activity-wizard-nav {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.activity-btn {
    padding: 14px 28px;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.activity-btn-primary {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: #fff;
    margin-left: auto;
}

.activity-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

.activity-btn-secondary {
    background: #f0f0f0;
    color: #333;
}

.activity-btn-secondary:hover {
    background: #e0e0e0;
}

.activity-btn-success {
    background: linear-gradient(135deg, #28a745, #20c997);
    color: #fff;
    margin-left: auto;
}

.activity-btn-success:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(40, 167, 69, 0.4);
}

.activity-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none !important;
}

/* Placeholders */
.activity-placeholder,
.activity-loading {
    text-align: center;
    padding: 30px;
    color: #666;
    background: #f8f9fa;
    border-radius: 10px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .activity-booking-wizard {
        padding: 15px;
    }

    .activity-wizard-progress {
        margin-bottom: 30px;
    }

    .activity-progress-step {
        padding: 0 15px;
    }

    .activity-progress-step .step-number {
        width: 36px;
        height: 36px;
        font-size: 14px;
    }

    .activity-progress-step:not(:last-child)::after {
        top: 17px;
        left: calc(50% + 20px);
    }

    .activity-progress-step .step-label {
        font-size: 10px;
    }

    .activity-wizard-step h2 {
        font-size: 20px;
    }

    .activity-category-grid {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        flex-wrap: unset !important;
        flex-direction: unset !important;
        gap: 12px !important;
    }

    .activity-category-card {
        width: 100% !important;
        min-width: 0 !important;
        max-width: 100% !important;
        flex: unset !important;
    }

    .activity-category-content {
        padding: 20px 10px;
        min-height: 80px;
    }

    .activity-category-icon {
        font-size: 36px;
        min-height: 40px;
    }

    .activity-time-slots-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .activity-product-card {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .activity-summary-row {
        flex-direction: column;
        gap: 5px;
    }

    .activity-wizard-nav {
        flex-direction: column;
        gap: 10px;
    }

    .activity-btn {
        width: 100%;
        justify-content: center;
    }

    .activity-btn-primary,
    .activity-btn-success {
        margin-left: 0;
    }
}

@media (max-width: 480px) {
    .activity-category-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }

    .activity-time-slots-grid {
        grid-template-columns: 1fr;
    }

    /* Fix calendar overflow on mobile */
    .activity-datetime-container {
        max-width: 100%;
        overflow-x: hidden;
    }

    .activity-inline-calendar-wrap {
        max-width: 100%;
        padding: 15px 10px;
        overflow-x: hidden;
        box-sizing: border-box;
    }

    .activity-calendar-header {
        padding: 8px 10px;
        margin-bottom: 15px;
    }

    .activity-calendar-month {
        font-size: 14px;
    }

    .activity-calendar-nav {
        width: 30px;
        height: 30px;
        font-size: 14px;
    }

    .activity-calendar-weekdays {
        gap: 2px;
    }

    .activity-calendar-weekdays span {
        font-size: 10px;
        padding: 5px 0;
    }

    .activity-calendar-days {
        gap: 2px;
    }

    .activity-calendar-day {
        font-size: 13px;
    }

    /* Fix time slots on mobile */
    .activity-slots-container {
        max-width: 100%;
        overflow-x: hidden;
    }

    .activity-time-slot {
        padding: 12px 8px;
    }

    .activity-slot-time {
        font-size: 13px;
    }

    .activity-slot-status {
        font-size: 10px;
    }
}

/* =====================================================
   BOOKING STATUS CHECKER STYLES
   ===================================================== */

.activity-booking-status-checker {
    max-width: 720px;
    margin: 0 auto;
    padding: 30px 20px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.activity-status-header {
    text-align: center;
    margin-bottom: 35px;
}

.activity-status-header h2 {
    margin: 0 0 12px;
    font-size: 32px;
    font-weight: 700;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.activity-status-header p {
    color: #6b7280;
    margin: 0;
    font-size: 16px;
}

/* Form Container */
.activity-status-form {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    padding: 35px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08), 0 0 0 1px rgba(0, 0, 0, 0.04);
}

.activity-status-form form {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    align-items: flex-end;
}

.activity-form-group {
    flex: 1;
    min-width: 200px;
}

.activity-form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #374151;
    font-size: 14px;
}

.activity-form-group input {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    font-size: 16px;
    transition: all 0.3s ease;
    background: #fff;
    box-sizing: border-box;
}

.activity-form-group input:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.12);
}

.activity-form-group input::placeholder {
    color: #9ca3af;
}

/* Buttons */
.activity-booking-status-checker .activity-btn {
    padding: 14px 28px;
    border: none;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.activity-booking-status-checker .activity-btn-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.35);
}

.activity-booking-status-checker .activity-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.45);
}

.activity-booking-status-checker .activity-btn-secondary {
    background: #f3f4f6;
    color: #374151;
    border: 2px solid #e5e7eb;
}

.activity-booking-status-checker .activity-btn-secondary:hover {
    background: #e5e7eb;
    transform: translateY(-1px);
}

.activity-booking-status-checker .activity-btn .btn-loading {
    display: none;
}

/* Error Message */
.activity-status-error {
    margin-top: 20px;
    padding: 14px 20px;
    background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
    color: #dc2626;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 500;
    border: 1px solid #fecaca;
}

/* Result Section */
.activity-status-result {
    animation: statusFadeIn 0.5s ease;
}

@keyframes statusFadeIn {
    from {
        opacity: 0;
        transform: translateY(15px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.activity-result-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.activity-result-header h3 {
    margin: 0;
    font-size: 24px;
    font-weight: 700;
    color: #1f2937;
}

/* Result Card */
.activity-result-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.1), 0 0 0 1px rgba(0, 0, 0, 0.03);
    overflow: hidden;
}

/* Status Badge Area */
.activity-result-status {
    padding: 22px 28px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    display: flex;
    align-items: center;
    gap: 15px;
}

.activity-result-status .status-label {
    font-size: 14px;
    opacity: 0.9;
}

.activity-result-status .status-badge {
    padding: 8px 18px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 25px;
    font-weight: 600;
    font-size: 14px;
    text-transform: capitalize;
    backdrop-filter: blur(10px);
}

/* Info Section */
.activity-result-info {
    padding: 28px;
    border-bottom: 1px solid #f3f4f6;
}

.activity-result-info .info-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #f9fafb;
}

.activity-result-info .info-row:last-child {
    border-bottom: none;
}

.activity-result-info .info-label {
    color: #6b7280;
    font-size: 14px;
}

.activity-result-info .info-value {
    font-weight: 600;
    color: #1f2937;
    font-size: 14px;
}

/* Items Section */
.activity-result-items {
    padding: 28px;
}

.activity-result-items h4 {
    margin: 0 0 18px;
    font-size: 18px;
    font-weight: 600;
    color: #1f2937;
}

.activity-items-table {
    width: 100%;
    border-collapse: collapse;
}

.activity-items-table th,
.activity-items-table td {
    padding: 14px 12px;
    text-align: left;
    border-bottom: 1px solid #f3f4f6;
}

.activity-items-table th {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    font-weight: 600;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #6b7280;
}

.activity-items-table td {
    font-size: 14px;
    color: #374151;
}

.activity-items-table tr:last-child td {
    border-bottom: none;
}

/* Extras Section */
.activity-result-extras {
    padding: 0 28px 28px;
}

.activity-result-extras h4 {
    margin: 0 0 18px;
    font-size: 18px;
    font-weight: 600;
    color: #1f2937;
}

/* Total Section */
.activity-result-total {
    padding: 22px 28px;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 2px solid #e5e7eb;
}

.activity-result-total .total-label {
    font-size: 16px;
    font-weight: 600;
    color: #374151;
}

.activity-result-total .total-value {
    font-size: 22px;
    font-weight: 700;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Payment Breakdown */
.activity-result-payment {
    padding: 28px;
    border-top: 2px solid #f3f4f6;
}

.activity-result-payment h4 {
    margin: 0 0 18px;
    font-size: 18px;
    font-weight: 600;
    color: #1f2937;
}

.payment-breakdown-grid {
    background: #f8fafc;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #e5e7eb;
}

.payment-row {
    display: flex;
    justify-content: space-between;
    padding: 14px 18px;
    border-bottom: 1px solid #e5e7eb;
}

.payment-row:last-child {
    border-bottom: none;
}

.payment-label {
    color: #6b7280;
    font-weight: 500;
}

.payment-value {
    font-weight: 700;
    color: #1f2937;
}

.payment-row.payment-success {
    background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
}

.payment-row.payment-success .payment-label,
.payment-row.payment-success .payment-value {
    color: #065f46;
}

.payment-row.payment-warning {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
}

.payment-row.payment-warning .payment-label,
.payment-row.payment-warning .payment-value {
    color: #92400e;
    font-weight: 700;
}

/* Actions Section */
.activity-result-actions {
    padding: 28px;
    text-align: center;
    background: linear-gradient(135deg, #fafafa 0%, #f5f5f5 100%);
}

.activity-result-actions .activity-btn {
    min-width: 180px;
    justify-content: center;
}

/* Honeypot */
.screen-reader-text {
    position: absolute !important;
    left: -9999px !important;
    top: -9999px !important;
}

/* Mobile Responsive */
@media (max-width: 640px) {
    .activity-booking-status-checker {
        padding: 20px 15px;
    }

    .activity-status-header h2 {
        font-size: 26px;
    }

    .activity-status-form {
        padding: 25px 20px;
    }

    .activity-status-form form {
        flex-direction: column;
    }

    .activity-form-group {
        min-width: 100%;
    }

    .activity-booking-status-checker .activity-btn {
        width: 100%;
        justify-content: center;
    }

    .activity-result-header {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .activity-result-info .info-row {
        flex-direction: column;
        gap: 4px;
    }

    .activity-items-table {
        font-size: 12px;
    }

    .activity-items-table th,
    .activity-items-table td {
        padding: 10px 8px;
    }

    .activity-result-total {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }

    .activity-result-actions {
        padding: 20px;
    }
}