/* css/style.css (Global styles) */
body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    color: #333;
    line-height: 1.6;
}

.container {
    width: 90%;
    max-width: 900px; /* Adjust as needed */
    margin: 20px auto;
    padding: 20px;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

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

.view-header h2 {
    margin: 0;
    color: #008080; /* Teal */
}

.back-button, .header-button {
    padding: 8px 12px;
    text-decoration: none;
    background-color: #008080; /* Teal */
    color: white;
    border-radius: 5px;
    border: none;
    cursor: pointer;
}
.back-button:hover, .header-button:hover {
    background-color: #006060;
}


/* Basic form elements */
select, input[type="text"], input[type="number"], input[type="password"] {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box; /* Important for width calculation */
}

button, .action-button, .secondary-button, .qualitative-option-button, .skip-button {
    padding: 10px 15px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1em;
}

/* SectionBox equivalent */
.section-box {
    background-color: #f9f9f9;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
    border: 1px solid #e0e0e0;
}
.section-box > *:first-child {
    margin-top: 0;
}

/* InfoPanel equivalent */
.info-panel {
    background-color: #e8f4f4; /* Light teal background */
    padding: 12px;
    border-radius: 6px;
    margin: 10px 0;
    font-size: 0.9em;
    color: #333;
}
.info-panel strong {
    color: #005050; /* Darker teal for emphasis */
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .container {
        width: 95%;
        padding: 15px;
    }
    .view-header h2 {
        font-size: 1.2em;
    }
    .back-button, .header-button {
        padding: 6px 10px;
        font-size: 0.9em;
    }
    .tools-grid {
        grid-template-columns: 1fr 1fr; /* Ensure two columns on smaller screens */
    }
}
