/**
 * Report Wizard Styles
 */

/* Buttons */
.cp-rw-btn {
    display: inline-block;
    padding: 8px 16px;
    font-size: 13px;
    font-weight: 500;
    border-radius: 6px;
    border: 1px solid #d1d5db;
    background: #fff;
    color: #374151;
    cursor: pointer;
    transition: background 0.15s ease, border-color 0.15s ease;
}

.cp-rw-btn:hover {
    background: #f3f4f6;
    border-color: #9ca3af;
}

.cp-rw-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.cp-rw-btn-primary {
    background: #2563eb;
    color: #fff;
    border-color: #2563eb;
}

.cp-rw-btn-primary:hover {
    background: #1d4ed8;
    border-color: #1d4ed8;
}

.cp-rw-btn-primary:disabled {
    background: #93c5fd;
    border-color: #93c5fd;
}

/* Progress dots */
.cp-rw-step-dot {
    flex: 1;
    height: 4px;
    border-radius: 2px;
    background: #e5e7eb;
    transition: background 0.3s ease;
}

.cp-rw-step-dot.active {
    background: #2563eb;
}

/* Step transitions */
.cp-rw-step {
    transition: opacity 0.2s ease, transform 0.2s ease;
}

/* Platform checkboxes */
.cp-rw-platform-option, #cp-rw-overlay select, #cp-rw-prompts-overlay select, #cp-rw-prompt-modal select {
    display: block;
    padding: 12px 16px;
    margin-bottom: 8px;
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    transition: border-color 0.15s ease, background 0.15s ease;
    width: 100%;
}
.cp-rw-platform-option {
    text-align: center;
}

.cp-rw-platform-option:hover, #cp-rw-overlay select:hover {
    border-color: #93c5fd;
    background: #eff6ff;
}

.cp-rw-platform-option input[type="checkbox"] {
    margin-right: 10px;
}
#cp-rw-overlay select { margin-right: 10px; }


/* Text Input and Textarea */
#cp-rw-prompt-modal input[type="text"], .cp-rw-custom-dates input[type="date"],
#cp-rw-prompt-modal textarea {
    width: 100%;
    padding: 8px 12px;
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    font-size: 14px;
    transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
#cp-rw-prompt-modal input[type="text"]:hover,
#cp-rw-prompt-modal textarea:hover,
#cp-rw-prompt-modal input[type="text"]:focus,
#cp-rw-prompt-modal textarea:focus, .cp-rw-custom-dates input[type="date"]:hover {
    border-color: #93c5fd;
    background: #eff6ff;
    outline: none;
}
/* Platform config cards */
.cp-rw-platform-config {
    margin-bottom: 0;
}

/* Merge tags cheatsheet */
.cp-rw-merge-tags-cheatsheet {
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    padding: 12px;
}

.cp-rw-merge-tags-cheatsheet code {
    display: inline-block;
    background: #e5e7eb;
    padding: 2px 6px;
    border-radius: 3px;
    font-size: 11px;
    margin: 2px 4px 2px 0;
}

/* Pulsing animation for processing state */
.cp-rw-pulse {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #2563eb;
    margin: 0 auto;
    animation: cp-rw-pulse-anim 1.5s ease-in-out infinite;
}


/* Promtpts */
.cp-prompts-container {
    padding: 8px;
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    margin-bottom: 8px;
    background: #f9fafb;
    display: flex;
    justify-content: space-between;
    font-size: 13px;
}




@keyframes cp-rw-pulse-anim {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.15);
        opacity: 0.7;
    }
}
