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;
}
.btn {
    border-radius: 3rem;
    border-color: unset;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 2px 8px 0px;
}
.btn-primary {
    border-radius: 3rem;
    background: linear-gradient(90deg, #3ED5D7 0%, #2496E6 100%);
    border-color: unset;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 2px 8px 0px;
}
    .btn-outline-primary {
        border-color: #2496E6;
    }
    .btn-outline-primary:hover {
        border-color: #2496E6;
        background: linear-gradient(90deg, #3ED5D7 0%, #2496E6 100%);
    }
    .btn-check:checked + .btn-outline-primary {
        border-color: #2496E6;
        background: linear-gradient(90deg, #3ED5D7 0%, #2496E6 100%);
    }

.card {
    border: 1px solid #ccc;
    border-radius: 0.6rem;
    /*padding: 10px;*/
    /*margin: 10px;*/
    float: left;
}

.card-header {
    background: linear-gradient(90deg, #3ED5D7 0%, #2496E6 100%);
}

.card-header:first-child {
    border-radius: 0.6rem 0.6rem 0 0;
}

.modal-header {
    background: linear-gradient(90deg, #3ED5D7 0%, #2496E6 100%);
}

/*.modal-header:first-child {
    border-radius: 0.6rem 0.6rem 0.3rem 0.3rem;
}*/

/*.modal-content:first-child {
    border-radius: 0.6rem 0.6rem 0.3rem 0.3rem;
}*/
option:disabled {
    background: #ccc;
}
/* 滾動條整體樣式 */
::-webkit-scrollbar {
    width: 0.5rem;
    height: 0.5rem;
}

/* 滾動槽樣式 */
::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 0.625rem;
}

/* 滾動條滑塊樣式 */
::-webkit-scrollbar-thumb {
    background: linear-gradient(90deg, #3ED5D7 0%, #2496E6 100%);
    border-radius: 0.625rem;
}

/* 滾動條滑塊懸停樣式 */
::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(90deg, #3ED5D7 0%, #2496E6 50%);
}

.page-item:first-child .page-link {
    border-top-left-radius: 0.625rem;
    border-bottom-left-radius: .65rem;
}
.page-item:last-child .page-link {
    border-top-right-radius: .625rem;
    border-bottom-right-radius: .625rem;
}

.page-item.active .page-link {
    border-color: #2496E6;
    background: linear-gradient(90deg, #3ED5D7 0%, #2496E6 100%);
}