/* Shared styles for consistent UI across all pages */

/* Larger font sizes for tablet/mobile */
body {
    font-size: 1.1rem;
}

/* Larger buttons for easier interaction */
.btn {
    font-size: 1rem;
    padding: 0.6rem 1rem;
    min-height: 48px;
    min-width: 100px;
}

.btn-sm {
    padding: 0.5rem 0.75rem;
    font-size: 1rem;
    min-height: 44px; /* Touch target size */
    min-width: 80px;
}

.btn-lg {
    padding: 0.75rem 1.5rem;
    font-size: 1.25rem;
    min-height: 56px;
    min-width: 120px;
}

/* Larger form inputs */
.form-control, .form-select {
    font-size: 1.1rem;
    padding: 0.6rem 0.75rem;
    min-height: 48px;
}

.form-label {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

/* Larger headings */
h1 {
    font-size: 2rem;
}

h2 {
    font-size: 1.75rem;
}

h3 {
    font-size: 1.5rem;
}

h4 {
    font-size: 1.3rem;
}

h5 {
    font-size: 1.4rem;
}

h6 {
    font-size: 1.1rem;
}

/* Text sizing */
.text-muted {
    font-size: 1rem;
}

/* Survey question queries */
.question-query {
    font-size: 1.2rem;
    font-weight: 500;
    color: #212529;
    margin-bottom: 0.75rem;
}

/* Survey answer options */
.survey-option-label {
    font-size: 1.1rem;
    color: #212529;
    margin-left: 0.5rem;
    cursor: pointer;
}

.survey-option-input {
    width: 1.25rem;
    height: 1.25rem;
    margin-top: 0.15rem;
    cursor: pointer;
}

.survey-option-input:focus {
    border-color: #86b7fe;
    outline: 0;
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}

/* Grid/table question row labels */
.question-row-label {
    font-size: 1.1rem;
    font-weight: 500;
    color: #212529;
}

/* Likert scale table headers */
.likert-header {
    font-size: 1rem;
    font-weight: 500;
    color: #495057;
}

/* Plain text question styling */
.plaintext-display {
    background-color: #f8f9fa;
    border: 0;
    padding: 1rem;
    font-size: 1.1rem;
    color: #212529;
}

/* Status indicators */
.status-completed {
    color: #198754;
    font-weight: 500;
}

.status-in-progress {
    color: #fd7e14;
    font-weight: 500;
}

.status-not-started {
    color: #6c757d;
    font-weight: 500;
}
