body {
  font-family: Arial, sans-serif;
    display: flex;
    flex-direction: column; /* 垂直排列子元素 */
    align-items: center;
    height: 100vh;
    margin: 0;
    margin-top: 60px;
    background-color: #f0f0f0
}

.navbar {
    width: 100%; /* 占满宽度 */
    display: flex;
    justify-content: center;
    background-color: #333;
    padding: 10px;
    position: fixed; /* 固定位置 */
    top: 0; /* 位于页面顶部 */
    left: 0;
}

.navbar a {
    color: white;
    padding: 14px 20px;
    text-decoration: none;
    text-align: center;
}

.navbar a:hover {
    background-color: #ddd;
    color: black;
}

.close-button {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.close-button:hover,
.close-button:focus {
  color: #000;
  text-decoration: none;
  cursor: pointer;
}

.message {
            margin: 0 10% 20px;
            font-size: 16px;
            color: #333;
        }

.container {
    text-align: center;
}
.options {
    margin-bottom: 20px;
}
select, input[type="date"] {
    margin: 0 5px;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 4px;
}
.search-box {
    display: flex;
    justify-content: center;
    align-items: center;
}
#search-input {
    width: 300px;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px 0 0 4px;
}
#search-button {
    padding: 10px 20px;
    background-color: #4285f4;
    color: white;
    border: none;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
}
#search-button:hover {
    background-color: #357ae8;
}
/* 返回按钮样式 */
    .back-button {
      display: block;
      width: 100px;
      margin: 30px auto;
      padding: 10px 20px;
      background-color: #007BFF;
      color: white;
      text-align: center;
      border-radius: 5px;
      text-decoration: none;
      transition: background-color 0.3s;
    }

    .back-button:hover {
      background-color: #0056b3;
    }

    .bg-slate-200\/25 {
    background-color: rgba(226,232,240,.25)
}
.border-2 {
    border-width: 2px
}

.border-solid {
    border-style: solid
}

.border-gray-300 {
    --tw-border-opacity: 1;
    border-color: rgb(209 213 219/var(--tw-border-opacity,1))
}

.border-slate-200 {
    --tw-border-opacity: 1;
    border-color: rgb(226 232 240/var(--tw-border-opacity,1))
}
.w-full {
    width: 100%
}
.modal {
    display: none; /* 默认不显示 */
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.4); /* 半透明背景 */
}

.modal-content {
    background-color: #fefefe;
    margin: 15% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%; /* 宽度 */
    max-width: 500px; /* 最大宽度 */
    border-radius: 8px; /* 圆角 */
}

/* 媒体查询，针对小屏幕设备调整样式 */
@media (max-width: 1290px) {
    .modal-content {
        margin: 10% auto;
        width: 90%; /* 增加宽度以适应小屏幕 */
        max-width: none; /* 移除最大宽度限制 */
    }
}
