html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}

.custom-select {
    width: 100%; /* 使下拉菜单填充其容器 */
    height: auto; /* 允许高度自动调整以适应内容 */
    overflow-y: auto; /* 添加滚动条以容纳所有选项 */
    max-height: 200px; /* 设置最大高度以限制长列表的大小 */
    border: 1px solid #ccc; /* 添加边框 */
    padding: 5px; /* 添加一些内部填充 */
}


.uploaded-label { /* 这里是用来调整上传框的 */
    color: green;
    font-size: 0.9em;
    margin-left: 5px;
}

.custom-logo img {
    height: 1em; /* 或者其他适当的值，以匹配文字的高度 */
    width: auto; /* 保持 logo 的长宽比 */
    vertical-align: middle; /* 垂直居中 logo */
}


body {
    font-family: 'Open Sans', sans-serif;
    color: #333;
}

.navbar, .footer {
    background-color: #f8f9fa;
}

.nav-link.active {
    font-weight: bold;
    color: #007bff;
}

.card {
    box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);
    transition: 0.3s;
    margin-bottom: 20px;
}

    .card:hover {
        box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2);
    }

.table {
    margin-top: 20px;
}

.btn-primary {
    background-color: #007bff;
    border-color: #007bff;
}
