/* Main styling for Burnout Tracker */
body {
    background-color: #f5f5f5;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    padding: 20px 0;
}

.container {
    max-width: 900px;
}

/* Browser mockup styling */
.browser-mockup {
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    margin: 20px auto;
}

.browser-header {
    background: #e8e8e8;
    padding: 10px 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid #d0d0d0;
}

.browser-title {
    font-weight: 600;
    font-size: 14px;
    color: #333;
}

.browser-buttons {
    display: flex;
    gap: 8px;
    margin-left: auto;
    margin-right: 10px;
}

.browser-buttons span {
    background: #fff;
    border: 1px solid #ccc;
    border-radius: 3px;
    padding: 2px 8px;
    font-size: 14px;
    cursor: pointer;
}

.url-bar {
    flex: 1;
    padding: 5px 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    background: white;
    font-size: 13px;
}

/* Content area */
.content-area {
    padding: 40px;
    min-height: 500px;
}

.welcome-text {
    text-align: center;
    color: #333;
    font-size: 28px;
    margin-bottom: 10px;
}

.subtitle {
    text-align: center;
    color: #666;
    font-size: 18px;
    margin-bottom: 40px;
}

/* Question blocks */
.question-block {
    margin-bottom: 35px;
}

.question-label {
    display: block;
    font-weight: 500;
    color: #333;
    margin-bottom: 15px;
    font-size: 15px;
}

/* Scale buttons */
.scale-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.scale-btn {
    padding: 8px 16px;
    border: 2px solid #d0d0d0;
    background: white;
    border-radius: 6px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s;
}

.scale-btn:hover {
    border-color: #007bff;
    background: #f0f8ff;
}

.scale-btn.selected {
    background: #007bff;
    color: white;
    border-color: #007bff;
}

/* Journal textarea */
.journal-textarea {
    width: 100%;
    border: 2px solid #d0d0d0;
    border-radius: 6px;
    padding: 12px;
    font-size: 14px;
    resize: vertical;
}

.journal-textarea:focus {
    border-color: #007bff;
    outline: none;
    box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.1);
}

/* Submit button */
.submit-btn {
    padding: 12px 40px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 6px;
}

/* Questionnaire specific styles */
.question-intro {
    font-size: 15px;
    color: #333;
    margin-bottom: 10px;
}

.question-scale-info {
    font-size: 13px;
    color: #666;
    margin-bottom: 30px;
    font-style: italic;
}

.questionnaire-section {
    margin-bottom: 30px;
}

.questionnaire-item {
    margin-bottom: 25px;
    padding: 15px;
    background: #f9f9f9;
    border-radius: 6px;
}

.questionnaire-label {
    display: block;
    font-weight: 500;
    color: #333;
    margin-bottom: 12px;
    font-size: 14px;
}

.questionnaire-options {
    display: flex;
    gap: 10px;
}

.option-btn {
    flex: 1;
    padding: 10px;
    border: 2px solid #d0d0d0;
    background: white;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.option-btn:hover {
    border-color: #007bff;
    background: #f0f8ff;
}

.option-btn.selected {
    background: #007bff;
    color: white;
    border-color: #007bff;
}

.score-display {
    text-align: center;
}

.score-display .alert {
    display: inline-block;
    padding: 15px 30px;
    font-size: 18px;
}

/* Responsive design */
@media (max-width: 768px) {
    .content-area {
        padding: 20px;
    }
    
    .scale-buttons {
        flex-direction: column;
    }
    
    .scale-btn {
        width: 100%;
    }
    
    .questionnaire-options {
        flex-wrap: wrap;
    }
    
    .option-btn {
        min-width: 60px;
    }
}