.dropdown-other-control-group input {
display:none;
}
/* 针对 Participants Database 表单中的提交按钮 */
.pdb-submit,
.pdb-form input[type="submit"] {
    /* 更改背景颜色 */
    background-color: #5ea304 !important; 
    /* 更改文本颜色 */
    color: #ffffff !important; 
    /* 增加圆角 */
    border-radius: 5px;
    /* 移除默认的边框 */
    border: none;
    /* 增加内边距让按钮更大 */
    padding: 15px 40px;
    /* 字体加粗 */
    font-weight: bold;
    /* 确保鼠标指针是手的形状 */
    cursor: pointer;
font-size: 18px;
}

/*录入表单*/
.entry-content thead th, .entry-content tr th {
    color: #555;
    font-weight: 600;
    padding: 9px 24px;
    font-size: 18px;
}

/* 定位“检索”按钮 */
input[name="submit_button"][value="Search"] {
margin-top: 20px !important; 
    /* 主背景色：蓝色 */
    background-color: #5ea304 !important; 
    /* 文本颜色 */
    color: #ffffff !important; 
    /* 移除边框 */
    border: none !important;
    /* 统一大小和形状 */
    padding: 8px 18px;
    border-radius: 4px;
    font-weight: bold;
    cursor: pointer;
    /* 确保覆盖默认的灰色背景 */
    box-shadow: none !important; 
}

/* 检索按钮悬停效果 */
input[name="submit_button"][value="Search"]:hover {
    background-color: #5ea304 !important; /* 悬停时颜色变深 */
}

/* 定位“清除/取消”按钮：将 value="clear" 修正为 value="Clear" */
input[name="submit_button"][value="Clear"] {
margin-top: 20px !important; 
    /* 主背景色：蓝色 */
    background-color: #5ea304 !important; 
    /* 文本颜色 */
    color: #ffffff !important; 
    /* 移除边框 */
    border: none !important;
    /* 统一大小和形状 */
    padding: 8px 18px;
    border-radius: 4px;
    font-weight: bold;
    cursor: pointer;
    /* 确保覆盖默认的灰色背景 */
    box-shadow: none !important; 
}
/* 建议同时添加悬停效果 */
input[name="submit_button"][value="Clear"]:hover {
    background-color: #5ea304 !important;
}

/***检索录入项宽度***/
.pdb-searchform {
padding: 10px 0px 20px 20px;
background-color: #eeeeee !important; 
}
.pdb-searchform input[type=text], .pdb-searchform input[type=submit], .pdb-searchform select, .pdb-searchform label.checkbox {
    width: 300px;
}