.status-full,
.status-stopped,
.status-error {
    color: red;
    font-weight: bold;
}

table {
    border-collapse: collapse;
    width: 100%;
}

th,
td {
    padding: 8px 12px;
    text-align: center;
}

.question-table {
    width: 100%;
    border-collapse: collapse;
    table-layout: fixed;
    font-family: Arial, sans-serif;
    margin: 20px 0;
    background-color: #ffffff;
    /* box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); */
}

.question-table th,
.question-table td {
    padding: 12px 15px;
    border: 1px solid #ddd;
    text-align: left;
    vertical-align: top;
}

.question-table th {
    background-color: #f2f2f2;
    font-weight: bold;
}

.question-table .col-question {
    width: 40%;
}

.question-table .col-answer {
    width: 60%;
}

.question-table .options {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: flex-start;
}

.question-table .options label {
    display: flex;
    align-items: center;
    font-size: 14px;
    cursor: pointer;
}

.question-table .options input[type="radio"],
.question-table .options input[type="checkbox"] {
    margin-right: 5px;
    transform: scale(1.2);
    cursor: pointer;
}

.question-table .fixed-textarea {
    width: 100%;
    height: 100px;
    resize: none;
    padding: 8px;
    font-size: 14px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
    overflow: auto;
}

.question-table .fixed-textarea:focus {
    border-color: #66afe9;
    outline: none;
    box-shadow: 0 0 5px rgba(102, 175, 233, 0.6);
}

.question-table tbody tr:hover {
    background-color: #f9f9f9;
}

/** アンケートtableの背景色変更 **/
.question-table tr:nth-child(odd) th {
  background-color: #F2F6FA; /* 奇数行の背景色 */
}
.question-table tr:nth-child(even) th {
  background-color: #E5EEF7; /* 偶数行の背景色 */
}

.registration-table {
    width: 100%;
    border-collapse: collapse;
    table-layout: fixed;
    /* font-family: Arial, sans-serif; */
    margin: 20px 0;
    background-color: #ffffff;
    /* box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); */
    font-size: small;
}

.registration-table th,
.registration-table td {
    padding: 12px 0px;
    border: 1px solid #ddd;
    text-align: center;
    vertical-align: middle;
}

.registration-table th {
    background-color: #f2f2f2;
    font-weight: bold;
}

.registration-table th:nth-child(7),
.registration-table td:nth-child(7) {
    text-align: center;
    vertical-align: middle;
}

.registration-table td:nth-child(7) input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
    display: unset;
}

.registration-table tbody tr:hover {
    background-color: #f9f9f9;
}

.registration-table th:nth-child(n+8),
.registration-table td:nth-child(n+8) {
    text-align: center;
    vertical-align: middle;
}

.registration-table td:nth-child(n+8) input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.registration-table .col-question {
    width: 20%;
}

.registration-table td.col-apply {
    /* display: flex; */
    align-items: center;
    justify-content: center;
    text-align: center;
    vertical-align: middle;
}

.registration-table td.col-apply input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
}
/** 分科会tableの背景色変更 **/
.registration-table tr:nth-child(odd) td:nth-child(1), .registration-table tr:nth-child(odd) td:nth-child(2) {
  background-color: #F2F6FA; /* 奇数行の背景色 */
}
.registration-table tr:nth-child(even) td:nth-child(1), .registration-table tr:nth-child(even) td:nth-child(2) {
  background-color: #E5EEF7; /* 偶数行の背景色 */
}

.large-text {
    font-size: large;
    font-weight: bold;
}

.subseminar-group-message {
    padding: 10px 15px;
    border-radius: 4px;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 14px;
    line-height: 1.5;
    color: #333;
    /* white-space: pre-line; */
    /* margin: 10px 0; */
}

.flash {
    white-space: pre-line;
    padding: 15px;
    margin-bottom: 20px;
    border: 1px solid transparent;
    border-radius: 4px;
    font-size: 14px;
}

.flash-success {
    color: #3c763d;
    background-color: #dff0d8;
    border-color: #d6e9c6;
}

.flash-info {
    color: #31708f;
    background-color: #d9edf7;
    border-color: #bce8f1;
}

.flash-warning {
    color: #8a6d3b;
    background-color: #fcf8e3;
    border-color: #faebcc;
}

.flash-danger {
    color: #a94442;
    background-color: #f2dede;
    border-color: #ebccd1;
}