/* Main Styles */
#bizplanai-hypothesis-wizard,
.bizplanai-validation-report,
#bizplanai-lean-canvas,
#bizplanai-business-plan {
    max-width: 900px;
    margin: 2rem auto;
    padding: 2rem;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

/* Form Elements */
label {
    display: block;
    margin: 1rem 0 0.5rem;
    font-weight: 600;
}

input[type="text"],
textarea,
select {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
}

textarea {
    min-height: 100px;
}

/* Validation Report */
.validation-card {
    padding: 1.5rem;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    background: #f9f9f9;
}

.score-box {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

.summary {
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.validation-details > div {
    margin-bottom: 1.5rem;
}

.validation-details h4 {
    margin-bottom: 0.5rem;
    color: #333;
}

.validation-details ul {
    padding-left: 1.5rem;
}

.validation-details li {
    margin-bottom: 0.5rem;
}

/* Lean Canvas Grid */
.lean-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

.lean-block {
    background: #f8f9fa;
    padding: 1rem;
    border-radius: 6px;
    border: 1px solid #e9ecef;
}

.lean-block label {
    margin-top: 0;
    font-weight: bold;
}

.lean-block textarea {
    min-height: 150px;
}

/* Business Plan */
.business-plan-steps {
    display: flex;
    justify-content: space-between;
    margin-bottom: 2rem;
}

.step {
    padding: 0.5rem 1rem;
    background: #e9ecef;
    border-radius: 4px;
    cursor: pointer;
}

.step.active {
    background: #007bff;
    color: white;
}

.form-step {
    display: none;
}

.form-step[data-step="1"] {
    display: block;
}

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

/* Buttons */
.button {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background: #f8f9fa;
    color: #212529;
    border: 1px solid #ddd;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1rem;
    text-align: center;
    transition: all 0.3s;
    margin-right: 0.5rem;
}

.button-primary {
    background: #3498db;
    color: white;
    border-color: #2980b9;
}

.button-success {
    background: #27ae60;
    color: white;
    border-color: #219653;
}

.button-warning {
    background: #f39c12;
    color: white;
    border-color: #e67e22;
}

/* Dashboard Table */
.bizplanai-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1rem 0 2rem;
}

.bizplanai-table th,
.bizplanai-table td {
    padding: 0.75rem;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.bizplanai-table th {
    background: #f8f9fa;
    font-weight: 600;
}

/* Print Styles for PDF */
@media print {
    .no-print {
        display: none !important;
    }
    
    @page {
        margin: 1cm;
    }
    
    body {
        font-size: 12pt;
    }
    
    .lean-block {
        page-break-inside: avoid;
        border: 1px solid #ddd !important;
    }
}
