.cci-wizard-wrapper {
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
max-width: 1000px;
margin: 20px auto;
background: white;
padding: 40px;
border-radius: 12px;
box-shadow: 0 0px 6px rgba(0, 0, 0, 0);
}

.cci-wizard-step {
display: none;
opacity: 0;
transform: translateX(20px);
transition: opacity 0.4s ease, transform 0.4s ease;
min-height: 80px;
}

.cci-wizard-step.cci-active {
display: block;
opacity: 1;
transform: translateX(0);
}

.cci-wizard-step h2 {
color: #333;
margin-bottom: 25px;
font-size: 1.5rem;
}

.cci-wizard-nav {
margin-top: 30px;
padding-top: 20px;
display: flex;
justify-content: space-between;
gap: 10px;
}

.cci-wizard-btn {
padding: 12px 24px;
font-size: 1rem;
background-color: #ed8b00;
color: white;
border: none;
border-radius: 6px;
cursor: pointer;
transition: all 0.3s ease;
font-weight: 500;
}

.cci-wizard-btn:hover:not(:disabled) {
background-color: #d67a00;
transform: translateY(-1px);
box-shadow: 0 4px 8px rgba(237, 139, 0, 0.3);
}

.cci-wizard-btn:disabled {
background-color: #ccc;
cursor: not-allowed;
transform: none;
}

.cci-wizard-btn-secondary {
background-color: #6c757d;
}

.cci-wizard-btn-secondary:hover {
background-color: #5a6268;
}

.cci-wizard-card {
border: 2px solid #e0e0e0;
padding: 25px;
margin: 20px 0;
border-radius: 8px;
background-color: #ffffff;
transition: all 0.3s ease;
}

.cci-wizard-card:hover {
border-color: #ed8b00;
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
transform: translateY(-2px);
}

.cci-wizard-card h3 {
margin: 0 0 15px;
color: #ed8b00;
font-size: 1.3rem;
}

.cci-wizard-card p {
color: #666;
margin: 10px 0;
line-height: 1.6;
}

.cci-wizard-card ul {
margin: 15px 0;
padding-left: 20px;
}

.cci-wizard-card li {
margin: 8px 0;
color: #555;
line-height: 1.6;
}

.cci-wizard-card.cci-green {
border-color: #28a745;
background-color: #f8fff9;
}

.cci-wizard-card.cci-blue {
border-color: #17a2b8;
background-color: #f8fdff;
}

.cci-wizard-pagination {
display: flex;
justify-content: center;
align-items: center;
margin-top: 30px;
gap: 15px;
}

.cci-wizard-dot {
width: 12px;
height: 12px;
background-color: #d0d0d0;
border-radius: 50%;
transition: all 0.3s ease;
cursor: pointer;
}

.cci-wizard-dot.cci-active {
background-color: #ed8b00;
transform: scale(1.3);
}

.cci-wizard-dot.cci-completed {
background-color: #28a745;
}

.cci-wizard-wrapper select,
.cci-wizard-wrapper input[type="text"],
.cci-wizard-wrapper input[type="email"] {
padding: 10px;
margin: 5px 0;
border: 2px solid #e0e0e0;
border-radius: 6px;
font-size: 1rem;
transition: border-color 0.3s ease;
width: 100%;
max-width: 400px;
}

.cci-wizard-wrapper select:focus,
.cci-wizard-wrapper input[type="text"]:focus,
.cci-wizard-wrapper input[type="email"]:focus {
outline: none;
border-color: #ed8b00;
}

.cci-wizard-wrapper label {
display: block;
margin: 12px 0;
font-size: 1rem;
color: #444;
cursor: pointer;
padding: 10px;
border-radius: 6px;
transition: background-color 0.2s ease;
}

.cci-wizard-wrapper label:hover {
background-color: #f8f9fa;
}

.cci-wizard-wrapper input[type="radio"],
.cci-wizard-wrapper input[type="checkbox"] {
margin-right: 10px;
cursor: pointer;
width: 18px;
height: 18px;
}

.cci-experience-note {
background-color: #fff3cd;
border-left: 4px solid #ffc107;
padding: 15px;
margin-top: 20px;
border-radius: 4px;
color: #856404;
}

.cci-print-section {
margin-top: 40px;
padding: 25px;
background: linear-gradient(135deg, #f0f8ff 0%, #e6f3ff 100%);
border-radius: 8px;
border: 2px solid #0078D4;
text-align: center;
}

.cci-print-section h3 {
color: #0078D4;
margin-top: 0;
}

@media print {
.cci-wizard-btn,
.cci-wizard-nav,
.cci-wizard-pagination,
.cci-progress-bar,
.cci-print-section {
display: none !important;
}

.cci-wizard-card {
page-break-inside: avoid;
border: 1px solid #333;
box-shadow: none;
}

.cci-wizard-wrapper {
box-shadow: none;
}
}

.cci-start-screen {
text-align: center;
padding: 40px 0;
}

.cci-progress-bar {
height: 6px;
background-color: #e0e0e0;
border-radius: 3px;
margin-bottom: 30px;
overflow: hidden;
}

.cci-progress-fill {
height: 100%;
background: linear-gradient(90deg, #ed8b00 0%, #ffb347 100%);
transition: width 0.4s ease;
width: 0%;
}

.cci-badge {
display: inline-block;
background: #28a745;
color: white;
padding: 4px 12px;
border-radius: 12px;
font-size: 0.85rem;
margin-bottom: 10px;
}

@media (max-width: 768px) {
.cci-wizard-wrapper {
margin: 20px;
padding: 25px;
}

.cci-wizard-nav {
flex-direction: column;
}

.cci-wizard-btn {
width: 100%;
}

.cci-email-section input {
max-width: 100%;
margin-bottom: 10px;
}
}