.nps-punch-container {
    text-align: center;
    padding: 20px;
    margin: 20px auto;
}

.nps-punch-container h2 {
    margin-bottom: 20px;
}

#nps-message {
    margin-bottom: 15px;
    font-weight: bold;
    font-size: 16px;
}

.nps-field {
    margin-bottom: 15px;
    text-align: left;
    /*max-width: 400px;*/
    margin-left: auto;
    margin-right: auto;
}

.nps-field label {
    display: block;
    text-align: left;
    margin-bottom: 5px;
    font-weight: bold;
}

.nps-field input[type="text"] {
    width: 100%;
    padding: 8px;
    box-sizing: border-box;
}

.nps-buttons {
    margin-top: 15px;
}

.nps-buttons button {
    margin: 5px;
}

/* RWD 調整 */
@media (max-width: 600px) {
    .nps-punch-container {
        padding: 10px;
    }
    .nps-field {
        max-width: 100%;
    }
}

/* 後台表格調整 */
.table-nps th {
    background-color: #f1f1f1;
    font-weight: bold;
}

/* 假設這些輸入欄位位於特定的 form 裡 */
form input[name="start_date"],
form input[name="end_date"] {
    display: none!important;
}

/* 如果有 label 文字需要隱藏，也可以針對 label 進行隱藏 */
form label[for="start_date"],
form label[for="end_date"] {
    display: none!important;
}

.nps-date-fields {
    display: none!important;
}

