/* Wizard Styles */
.bizidea-wizard-container {
    max-width: 800px;
    margin: 0 auto;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    overflow: hidden;
}

.wizard-header {
    background: #2c3e50;
    color: #fff;
    padding: 20px;
    text-align: center;
}

.progress-bar {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
}

.progress-step {
    flex: 1;
    text-align: center;
    padding: 10px;
    background: #34495e;
    margin: 0 2px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
}

.progress-step.active {
    background: #3498db;
    font-weight: bold;
}

.wizard-content {
    padding: 30px;
}

.wizard-step {
    display: none;
}

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

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
}

.form-group input[type="text"],
.form-group input[type="number"],
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
}

.dynamic-fields .field-group {
    display: flex;
    margin-bottom: 10px;
}

.dynamic-fields .field-group input {
    flex: 1;
    margin-right: 10px;
}

.range-slider {
    margin-top: 10px;
}

.range-value {
    font-weight: bold;
    margin-top: 5px;
}

.wizard-footer {
    padding: 20px;
    background: #f5f7fa;
    display: flex;
    justify-content: space-between;
}

.wizard-footer button {
    padding: 10px 20px;
    background: #3498db;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.wizard-footer button:disabled {
    background: #95a5a6;
    cursor: not-allowed;
}

/* Dashboard Styles */
.bizidea-dashboard {
    max-width: 1000px;
    margin: 0 auto;
}

.bizidea-reports-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

.bizidea-reports-table th,
.bizidea-reports-table td {
    border: 1px solid #ddd;
    padding: 12px;
    text-align: left;
}

.bizidea-reports-table th {
    background-color: #f8f9fa;
}

.status-draft {
    color: #e67e22;
    font-weight: bold;
}

.status-completed {
    color: #27ae60;
    font-weight: bold;
}

.view-report,
.download-pdf,
.continue-report {
    color: #3498db;
    text-decoration: none;
    margin-right: 10px;
}

.view-report:hover,
.download-pdf:hover,
.continue-report:hover {
    text-decoration: underline;
}

/* Report View Styles */
.bizidea-report {
    max-width: 1000px;
    margin: 0 auto;
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.report-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    border-bottom: 1px solid #eee;
    padding-bottom: 20px;
}

.report-section {
    margin-bottom: 40px;
}

.swot-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.swot-box {
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.swot-strengths { background-color: rgba(46, 204, 113, 0.1); }
.swot-weaknesses { background-color: rgba(231, 76, 60, 0.1); }
.swot-opportunities { background-color: rgba(52, 152, 219, 0.1); }
.swot-threats { background-color: rgba(243, 156, 18, 0.1); }

.score-container {
    text-align: center;
    margin: 20px 0;
}

.score-circle {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: #3498db;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 36px;
    font-weight: bold;
}

.score-summary {
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto;
}

.pitch-slide {
    background: #f8f9fa;
    padding: 20px;
    border-left: 4px solid #3498db;
    margin-bottom: 20px;
}