/**
 * Shared layout for ticket_v2.html and techCall_v2.html (Quill sections, labels, testing row).
 */

body {
    color: black;
}

label {
    color: #f0f0f0;
}

/* Rich-text editor shells */
.editor-section {
    margin-bottom: 20px;
    width: 85%;
    max-width: 1200px;
    background: rgb(255, 255, 255);
    border-radius: 10px;
    padding: 5px;
    overflow-y: auto;
    resize: vertical;
    box-sizing: border-box;
}

.editor {
    height: 200px;
    padding: 10px;
    background: white;
    overflow-y: auto;
    border-radius: 0 0 5px 5px;
}

h2 {
    font-size: 1.2em;
    margin-bottom: 10px;
}

h4 {
    color: #f0f0f0;
}

/* Inbound ticket scorecard (ticket_v2 only) */
.scorecard {
    font-family: Arial, sans-serif;
    color: white;
    text-align: center;
    margin: 20px auto;
}

.scorecard ol {
    list-style: none;
    padding: 0;
    margin: 0;
    display: inline-block;
    text-align: left;
}

.checkbox-container {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 8px 0;
}

.checkbox-container input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin: 0;
    cursor: pointer;
}

.checkbox-container span {
    font-size: 16px;
    line-height: 1.4;
}

.status-btn {
    width: 28px;
    height: 28px;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: bold;
    color: #ffffff;
    cursor: pointer;
}

.status-btn.upToDate {
    background: #2e7d32;
}

.status-btn.notUpToDate {
    background: #c62828;
}

.status-btn.active {
    box-shadow: inset 0 0 0 3px rgba(255, 255, 255, 0.35);
}

/* Dev-only testing row */
.testing-section td {
    padding-top: 10px;
    border-top: 1px solid #ddd;
}

.testing-section .testing-label {
    color: #666;
}

.btn-test-fill {
    background-color: #4caf50;
    font-size: 12px;
}

.btn-test-clear {
    background-color: #f44336;
    font-size: 12px;
}

.support-numbers td {
    padding-top: 0.5rem;
}
