/* ✅ General Styles */
body {
    font-family: Arial, sans-serif;
    background-color: #f8f8f8;
    margin: 20px;
    padding: 20px;
}

/* ✅ Heading Styles */
h2 {
    color: #333;
    text-align: center;
    margin-bottom: 20px;
}

/* ✅ Start Testing Button */
#start-testing-btn {
    background-color: #4CAF50;
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    display: block;
    margin: 10px auto;
    border-radius: 5px;
    transition: background 0.3s ease-in-out;
}

#start-testing-btn:hover {
    background-color: #45a049;
}

/* ✅ Table Styling */
.rhfas-page-list-table {
    width: 100%;
    border-collapse: collapse;
    background-color: white;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    overflow: hidden;
}

.rhfas-page-list-table th {
    background-color: #4CAF50;
    color: white;
    text-align: left;
    padding: 10px;
}

.rhfas-page-list-table td {
    padding: 10px;
    border-bottom: 1px solid #ddd;
}

/* ✅ Alternate Row Colors */
.rhfas-page-list-table tr:nth-child(even) {
    background-color: #f2f2f2;
}

/* ✅ Table Links */
.rhfas-page-list-table a {
    color: #0073aa;
    text-decoration: none;
    font-weight: bold;
}

.rhfas-page-list-table a:hover {
    color: #005580;
    text-decoration: underline;
}

/* ✅ Checkbox Styling */
input[type="checkbox"] {
    transform: scale(1.2);
    cursor: pointer;
}

/* ✅ Comments Box */
input[type="text"].test-notes {
    width: 100%;
    padding: 5px;
    border: 1px solid #ccc;
    border-radius: 3px;
    font-size: 14px;
}

/* ✅ Modal (For Testing Feedback) */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    background: white;
    padding: 20px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
    border-radius: 5px;
}

.modal-content {
    text-align: center;
}

.modal .close {
    float: right;
    font-size: 20px;
    cursor: pointer;
}

.modal textarea {
    width: 100%;
    height: 80px;
    margin: 10px 0;
    padding: 5px;
}

.modal button {
    background-color: #4CAF50;
    color: white;
    padding: 8px 15px;
    border: none;
    cursor: pointer;
}

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