/* Schulbegleitungs-Navigator Styles */

.sbn-container {
    max-width: 800px;
    margin: 2rem auto;
    padding: 1.5rem;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.sbn-progress-bar {
    width: 100%;
    height: 8px;
    background: #e0e0e0;
    border-radius: 4px;
    margin-bottom: 2rem;
    overflow: hidden;
}

.sbn-progress {
    height: 100%;
    background: #4CAF50;
    width: 0;
    transition: width 0.3s ease;
}

.sbn-content {
    padding: 1rem;
}

.sbn-start-screen {
    text-align: center;
}

.sbn-button {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    color: #ffffff;
    background: #4CAF50;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.sbn-button:hover {
    background: #45a049;
}

.sbn-question {
    margin-bottom: 2rem;
}

.sbn-question h3 {
    margin-bottom: 1rem;
    color: #333;
}

.sbn-options {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.sbn-option {
    display: flex;
    align-items: center;
    padding: 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.sbn-option:hover {
    border-color: #4CAF50;
    background: #f5f5f5;
}

.sbn-option.selected {
    border-color: #4CAF50;
    background: #e8f5e9;
}

.sbn-checkbox {
    margin-right: 1rem;
    width: 20px;
    height: 20px;
    cursor: pointer;
}

.sbn-option-label {
    flex: 1;
}

.sbn-navigation {
    display: flex;
    justify-content: space-between;
    margin-top: 2rem;
}

.sbn-back-button {
    background: #757575;
}

.sbn-back-button:hover {
    background: #616161;
}

.sbn-error {
    color: #d32f2f;
    margin: 1rem 0;
    padding: 0.5rem;
    background: #ffebee;
    border-radius: 4px;
    display: none;
}

.sbn-results {
    text-align: center;
}

.sbn-results-content {
    margin: 2rem 0;
    padding: 2rem;
    border-radius: 8px;
}

.sbn-result-full {
    background: #e8f5e9;
    border: 2px solid #4CAF50;
}

.sbn-result-partial {
    background: #fff3e0;
    border: 2px solid #ff9800;
}

.sbn-result-none {
    background: #f5f5f5;
    border: 2px solid #9e9e9e;
}

.sbn-next-steps {
    margin: 2rem 0;
    text-align: left;
}

.sbn-next-steps ul {
    list-style-type: none;
    padding: 0;
}

.sbn-next-steps li {
    margin: 1rem 0;
    padding-left: 2rem;
    position: relative;
}

.sbn-next-steps li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #4CAF50;
    font-weight: bold;
}

.sbn-documents {
    margin: 2rem 0;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 4px;
    text-align: left;
}

.sbn-documents ul {
    list-style-type: none;
    padding: 0;
}

.sbn-documents li {
    margin: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.sbn-documents li:before {
    content: '•';
    position: absolute;
    left: 0;
    color: #4CAF50;
}

.sbn-download-button {
    background: #2196F3;
    margin: 1rem 0;
}

.sbn-download-button:hover {
    background: #1976D2;
}

.sbn-cta {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.sbn-contact-button {
    background: #ff9800;
    margin-top: 1rem;
}

.sbn-contact-button:hover {
    background: #f57c00;
}

/* Responsive Design */
@media (max-width: 768px) {
    .sbn-container {
        margin: 1rem;
        padding: 1rem;
    }

    .sbn-button {
        width: 100%;
        margin: 0.5rem 0;
    }

    .sbn-navigation {
        flex-direction: column;
        gap: 1rem;
    }

    .sbn-results-content {
        padding: 1rem;
    }
} 