/* timestamp.css */

body {
    background-color: #0078d4; /* 设置背景颜色为蓝色 */
    color: #fff; /* 设置文本颜色为白色 */
    font-family: Arial, sans-serif; /* 设置字体 */
  }
  
  .container {
    max-width: 400px;
    margin: 0 auto;
    padding: 20px;
    border: 1px solid #ccc;
    background-color: #fff; /* 设置容器背景色为白色 */
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2); /* 添加阴影效果 */
  }
  
  h2 {
    text-align: center;
    margin-bottom: 20px;
    color: black;
  }
  
  .buttons {
    text-align: center;
    margin-bottom: 10px;
  }
  
  .buttons button {
    background-color: #0078d4; /* 设置按钮背景色为蓝色 */
    color: #fff; /* 设置按钮文本颜色为白色 */
    padding: 5px 10px;
    margin: 0 5px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
  } 

  .result-section {
    font-size: 18px; /* 增大结果字体大小 */
    margin-top: 20px; /* 增加与上一行的间距 */
    color: black;
  }

.input-section {
    margin-bottom: 20px; /* 增加与下一行的间距，使按钮处于中间位置 */
    text-align: center; /* 居中文本和按钮 */
  }
  
  .input-section label {
    display: block;
    font-weight: bold;
  }
  
  .input-section input {
    width: 100%;
    padding: 5px;
    border: 1px solid #ccc;
    border-radius: 3px;
    margin-bottom: 5px; /* 增加输入框之间的间距 */
  }
  
  .input-section button {
    background-color: #0078d4;
    color: #fff;
    padding: 5px 10px;
    margin-top: 5px; /* 增加按钮上方的间距，使按钮处于中间位置 */
    border: none;
    border-radius: 5px;
    cursor: pointer;
  }
  