.compliance-assessment-container {
    max-width: 800px;
    min-width: 800px;
    margin: 2rem auto;
    padding: 2rem;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(44, 82, 130, 0.07);
}

.progress-steps {
    display: flex;
    justify-content: space-between;
    margin-bottom: 3rem;
    padding: 0 1rem 1rem;
    border-bottom: 1px solid #e2e8f0;
}

.step {
    color: #94a3b8;
    font-weight: 400;
    font-size: 0.9375rem;
    position: relative;
    padding-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.step.active {
    color: #059669;
    font-weight: 500;
}

.step.completed {
    color: #059669;
}

.step.active::after {
    content: '';
    position: absolute;
    bottom: -1rem;
    left: 0;
    right: 0;
    height: 2px;
    background: #059669;
    border-radius: 2px;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 400;
    color: #475569;
    font-size: 0.9375rem;
}

.form-group input[type="text"],
.form-group input[type="email"] {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    font-size: 0.9375rem;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-group input[type="text"]:focus,
.form-group input[type="email"]:focus {
    border-color: #2c5282;
    box-shadow: 0 0 0 3px rgba(44, 82, 130, 0.1);
    outline: none;
}

.form-group input[type="radio"] {
    margin-right: 0.5rem;
}

button {
    background: #059669;
    color: white;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 6px;
    font-size: 0.9375rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
    display: inline-block;
}

button:hover:not(:disabled) {
    background: #047857;
    transform: translateY(-1px);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

button:disabled {
    background: #e2e8f0;
    color: #94a3b8;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.payment-amount {
    text-align: center;
    margin: 2rem 0;
}

#confirmation-message {
    text-align: center;
    color: #38a169;
    font-size: 1.125rem;
    margin-top: 1rem;
}

/* File Upload Styles */
.upload-container {
    border: 2px dashed #e2e8f0;
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 1rem;
    background: #f8fafc;
    transition: all 0.2s ease;
}

.upload-container:hover,
.upload-container.dragover {
    border-color: #2c5282;
    background: #f1f5f9;
}

.upload-info {
    margin-top: 1rem;
}

.file-count {
    display: block;
    color: #64748b;
    font-size: 0.875rem;
    margin-bottom: 0.75rem;
}

.selected-files {
    display: grid;
    gap: 0.75rem;
}

.file-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: white;
    padding: 0.75rem 1rem;
    border-radius: 6px;
    border: 1px solid #e2e8f0;
    transition: border-color 0.2s ease;
}

.file-item:hover {
    border-color: #2c5282;
}

.file-item .file-name {
    flex-grow: 1;
    margin-right: 1rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    color: #475569;
    font-size: 0.875rem;
}

.file-item .remove-file {
    color: #dc2626;
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
    font-size: 0.8125rem;
    background: transparent;
    transition: all 0.2s ease;
}

.file-item .remove-file:hover {
    background: #fef2f2;
}

.upload-error {
    color: #dc2626;
    font-size: 0.875rem;
    margin-top: 0.75rem;
    padding: 0.5rem 0.75rem;
    background: #fef2f2;
    border-radius: 4px;
}

/* Drag and drop styles */
.upload-container.dragover {
    border-color: #2c5282;
    background: #ebf8ff;
}

.upload-progress {
    height: 4px;
    background: #e2e8f0;
    border-radius: 2px;
    margin-top: 0.5rem;
    overflow: hidden;
}

.upload-progress-bar {
    height: 100%;
    background: #2c5282;
    width: 0;
    transition: width 0.3s ease;
}

/* Payment Section Styles */
.payment-section {
    max-width: 500px;
    margin: 0 auto;
    padding: 2rem;
    text-align: center;
    background: #f8fafc;
    border-radius: 8px;
}

.payment-section h2 {
    font-weight: 500;
    font-size: 1.125rem;
    color: #1a365d;
    text-align: center;
    margin-bottom: 2rem;
}

.payment-amount {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.payment-amount h3 {
    font-weight: 500;
    font-size: 1.125rem;
    color: #1a365d;
    margin: 0;
}

/* Center align PayPal button */
.wpecpp-container {
    display: flex;
    justify-content: center;
    margin: 0 auto;
}

#payment-confirmation-container {
    margin: 1.5rem 0;
    min-height: 30px;
}

#continue-to-delivery {
    background: #059669;
    width: 100%;
    max-width: 300px;
    margin-top: 1.5rem;
}

#continue-to-delivery:hover {
    background: #047857;
}

/* Delivery Method Step Styles */
.step-content h2 {
    font-weight: 500;
    font-size: 1.125rem;
    color: #1a365d;
    text-align: center;
    margin-bottom: 1rem;
}

.subtitle {
    text-align: center;
    color: #64748b;
    font-size: 0.9375rem;
    margin: -0.5rem 0 2rem;
}

.delivery-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding: 0 1rem;
}

.delivery-option {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.delivery-option:hover {
    border-color: #2c5282;
    box-shadow: 0 4px 6px rgba(44, 82, 130, 0.1);
}

.delivery-option label {
    display: block;
    padding: 1.5rem;
    cursor: pointer;
}

.delivery-option input[type="radio"] {
    margin-right: 0.75rem;
}

.option-content h3 {
    font-weight: 500;
    font-size: 1rem;
    color: #1a365d;
    margin: 0 0 0.5rem;
}

.option-content p {
    color: #64748b;
    font-size: 0.875rem;
    margin: 0.25rem 0;
}

/* Consultation Booking Step */
.calendly-section {
    margin: 2rem 0;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.calendly-inline-widget {
    width: 100%;
    border: none;
    margin: 0;
    padding: 0;
}

/* Confirmation Step Styles */
.confirmation-container {
    text-align: center;
    padding: 2rem;
}

.success-icon {
    margin-bottom: 1.5rem;
}

.confirmation-title {
    font-weight: 500;
    font-size: 1.25rem;
    color: #059669;
    margin-bottom: 2rem;
}

.whats-next-section {
    background: #f8fafc;
    padding: 2rem;
    border-radius: 8px;
    margin: 2rem 0;
}

.whats-next-section h3 {
    font-weight: 500;
    font-size: 1rem;
    color: #1a365d;
    margin-bottom: 1.5rem;
}

.steps-list {
    text-align: left;
}

.step-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.step-number {
    width: 24px;
    height: 24px;
    background: #059669;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    margin-right: 1rem;
}

.step-text {
    color: #475569;
    font-size: 0.9375rem;
}

.support-section {
    margin-top: 2rem;
    color: #64748b;
    font-size: 0.875rem;
}

.support-section a {
    color: #059669;
    text-decoration: none;
}

.support-section a:hover {
    color: #047857;
    text-decoration: underline;
}

.action-buttons {
    margin-top: 2rem;
}

.button.primary {
    display: inline-block;
    text-decoration: none;
    background: #059669;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    font-size: 0.9375rem;
    font-weight: 500;
    transition: all 0.2s ease;
}

.button.primary:hover {
    background: #047857;
    transform: translateY(-1px);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Welcome Banner Styles */
.welcome-banner {
    background: #f0f9ff;
    border-radius: 8px;
    margin: 0 0 2rem 0;
    padding: 2rem;
    position: relative;
    overflow: hidden;
}

.welcome-banner::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 150px;
    height: 100%;
    background: linear-gradient(45deg, transparent, #e6f6ff);
    z-index: 1;
}

.banner-content {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.banner-text h1 {
    color: #059669;
    font-size: 1.75rem;
    margin: 0 0 0.5rem 0;
    font-weight: 600;
}

.banner-text p {
    color: #4a5568;
    font-size: 1.1rem;
    margin: 0;
    line-height: 1.5;
}

.banner-actions {
    flex-shrink: 0;
    margin-left: 2rem;
}

.logout-button {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1rem;
    background: white;
    color: #4a5568;
    border: 1px solid #e2e8f0;
    border-radius: 4px;
    font-size: 0.875rem;
    text-decoration: none;
    transition: all 0.2s ease;
}

.logout-button:hover {
    background: #f8fafc;
    border-color: #cbd5e0;
    color: #2d3748;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.logout-button svg {
    margin-right: 0.5rem;
}

.payment-error {
    background: #fff5f5;
    border: 1px solid #feb2b2;
    color: #c53030;
    padding: 1rem;
    margin-bottom: 1rem;
    border-radius: 4px;
    text-align: center;
}

.payment-error button {
    background: #fff;
    border: 1px solid #c53030;
    color: #c53030;
    padding: 0.5rem 1rem;
    margin: 0 0.5rem;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s;
}

.payment-error button:hover {
    background: #c53030;
    color: #fff;
}

.payment-error .retry-payment {
    border-color: #059669;
    color: #059669;
}

.payment-error .retry-payment:hover {
    background: #059669;
    color: #fff;
}

.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.9);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.loading-spinner {
    width: 50px;
    height: 50px;
    border: 3px solid #f3f3f3;
    border-top: 3px solid #059669;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 1rem;
}

.loading-message {
    color: #2d3748;
    font-size: 1.1rem;
    text-align: center;
    max-width: 80%;
}

.retry-button {
    display: none;
    margin-top: 1rem;
    padding: 0.5rem 1rem;
    background: #059669;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.retry-button:hover {
    background: #047857;
}

.network-status {
    position: fixed;
    bottom: 20px;
    right: 20px;
    padding: 8px 16px;
    border-radius: 4px;
    font-size: 0.875rem;
    z-index: 9999;
    display: none;
}

.network-status.offline {
    background: #fff5f5;
    color: #c53030;
    border: 1px solid #feb2b2;
}

.network-status.slow {
    background: #fffaf0;
    color: #c05621;
    border: 1px solid #fbd38d;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.about-choice {
    background: #f8fafc;
    padding: 1.5rem;
    border-radius: 8px;
    margin: 2rem 0;
}

.about-choice h3 {
    color: #1a365d;
    font-weight: 500;
    font-size: 1.125rem;
    margin: 0 0 1rem 0;
}

.choice-details h4 {
    color: #1a365d;
    font-weight: 500;
    font-size: 1rem;
    margin: 0 0 0.5rem 0;
}

.choice-details ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.choice-details li {
    color: #4a5568;
    margin: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.choice-details li:before {
    content: "•";
    color: #059669;
    position: absolute;
    left: 0;
}

.step-navigation {
    display: flex;
    justify-content: flex-end;
    margin-top: 2rem;
}

.back-button {
    background: #e2e8f0;
    color: #4a5568;
}

.back-button:hover {
    background: #cbd5e0;
}

.continue-button {
    background: #059669;
    color: white;
}

.continue-button:hover {
    background: #047857;
}

/* Selected state for delivery options */
.delivery-option input[type="radio"]:checked + .option-content {
    border-left: 3px solid #059669;
    padding-left: 1rem;
}

/* Thank you page specific styles */
.success-icon svg path {
    fill: #059669;
}

.confirmation-container .confirmation-title {
    color: #059669;
    font-weight: 500;
    font-size: 1.25rem;
    margin-bottom: 2rem;
}

.step-number {
    background: #059669;
    color: white;
}

.loading-spinner {
    border-top: 3px solid #059669;
}

.retry-button {
    background: #059669;
}

.retry-button:hover {
    background: #047857;
}

/* Authentication Form Styles */
.cc-auth-container {
    max-width: 400px;
    margin: 0 auto 2rem;
    padding: 2rem;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.cc-auth-container h2 {
    color: #2c5282;
    font-size: 1.5rem;
    margin: 0 0 1rem;
    text-align: center;
}

.auth-description {
    color: #4a5568;
    text-align: center;
    margin-bottom: 1.5rem;
}

.auth-error {
    background: #fef2f2;
    color: #991b1b;
    padding: 0.75rem;
    border-radius: 4px;
    margin-bottom: 1rem;
    text-align: center;
    font-size: 0.875rem;
}

.cc-auth-container .form-group {
    margin-bottom: 1.25rem;
}

.cc-auth-container .form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #4a5568;
    font-size: 0.875rem;
}

.cc-auth-container .form-control {
    width: 100%;
    padding: 0.625rem;
    border: 1px solid #e2e8f0;
    border-radius: 4px;
    font-size: 0.875rem;
    transition: border-color 0.2s ease;
}

.cc-auth-container .form-control:focus {
    border-color: #2c5282;
    outline: none;
    box-shadow: 0 0 0 3px rgba(44, 82, 130, 0.1);
}

.cc-auth-container .remember-me {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.cc-auth-container .remember-me label {
    margin: 0;
    font-size: 0.875rem;
    cursor: pointer;
}

.cc-auth-container .remember-me input[type="checkbox"] {
    margin-right: 0.5rem;
}

.cc-auth-container .button {
    width: 100%;
    padding: 0.75rem;
    font-size: 0.875rem;
    font-weight: 500;
}

.auth-links {
    margin-top: 1.5rem;
    text-align: center;
    font-size: 0.875rem;
}

.auth-links a {
    color: #2c5282;
    text-decoration: none;
    transition: color 0.2s ease;
}

.auth-links a:hover {
    color: #1a365d;
    text-decoration: underline;
}

.auth-links .separator {
    margin: 0 0.5rem;
    color: #cbd5e0;
}

/* Hide business info form when not logged in */
.not-logged-in #business-info-form {
    display: none;
}

/* Authentication Section Styles */
.auth-section {
    margin-bottom: 0;
    padding-bottom: 1rem;
    text-align: left;
}

.auth-section h3 {
    color: #2c5282;
    font-size: 1.25rem;
    margin: 0 0 0.5rem;
    text-align: left;
}

.auth-description {
    color: #4a5568;
    font-size: 0.9375rem;
    margin-bottom: 1.5rem;
    text-align: left;
}

.auth-section form {
    max-width: 100%;
    margin: 0;
}

.auth-error {
    background: #fef2f2;
    color: #991b1b;
    padding: 0.75rem;
    border-radius: 4px;
    margin: 1rem 0;
    font-size: 0.875rem;
}

.auth-section .button {
    width: auto;
    min-width: 200px;
    margin: 1rem 0;
}

.auth-links {
    margin-top: 1rem;
    font-size: 0.875rem;
    color: #4a5568;
    text-align: left;
}

.auth-links a {
    color: #2c5282;
    text-decoration: none;
    transition: color 0.2s ease;
}

.auth-links a:hover {
    color: #1a365d;
    text-decoration: underline;
}

.auth-links .separator {
    margin: 0 0.5rem;
    color: #cbd5e0;
}

.reset-password-button {
    width: 100%;
    margin-top: 1rem;
}

.success-message {
    text-align: center;
    color: #059669;
    padding: 1rem;
}

.success-message p {
    margin-bottom: 1rem;
}

/* Transition animations */
.signup-fields,
.login-fields,
.reset-fields {
    transition: opacity 0.3s ease;
}

/* Assessment Form Overlay */
.assessment-form-overlay {
    position: relative;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #e2e8f0;
}

.overlay-message {
    background: #f7fafc;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    padding: 1rem;
    margin-bottom: 1.5rem;
    text-align: left;
    color: #4a5568;
    font-size: 0.9375rem;
}

.disabled-form {
    opacity: 0.6;
    pointer-events: none;
    filter: grayscale(20%);
    position: relative;
}

/* More specific style for the welcome banner when disabled */
.welcome-banner.disabled-form {
    opacity: 0.4;
    filter: grayscale(60%);
    position: relative;
    background-color: #e9ecef;
    border: 1px solid #dee2e6;
}

/* Enhanced overlay message style */
.overlay-message.prominent-message {
    background-color: #edf2f7 !important;
    padding: 30px 20px !important;
    margin: 50px 0 60px !important;
    border-radius: 8px !important;
    border: 1px solid #cbd5e0 !important;
    font-size: 1.4rem !important;
    text-align: center !important;
    font-weight: 500 !important;
    color: #4a5568 !important;
    box-shadow: 0 3px 6px rgba(0,0,0,0.1) !important;
    transition: all 0.3s ease !important;
    line-height: 1.6 !important;
    min-height: 100px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

/* Button style for the refresh page button */
.refresh-page-button {
    background: #2c5282 !important;
    color: white !important;
    padding: 10px 15px !important;
    border-radius: 4px !important;
    border: none !important;
    cursor: pointer !important;
    font-weight: 500 !important;
    transition: all 0.2s ease !important;
    display: inline-block !important;
}

.refresh-page-button:hover {
    background: #1a365d !important;
    transform: translateY(-1px) !important;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1) !important;
}

/* Ensure login/registration elements inside assessment remain interactive */
.auth-section {
    opacity: 1 !important;
    pointer-events: auto !important;
    filter: none !important;
}

/* Verification Message Styles */
.verification-message {
    text-align: center;
    padding: 2rem;
    background: #f0f9ff;
    border-radius: 8px;
    margin: 1rem 0;
}

.verification-message h3 {
    color: #059669;
    margin-bottom: 1rem;
}

.verification-message p {
    color: #4a5568;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.verification-message .auth-links {
    margin-top: 1.5rem;
} 