html, body {
    height: 100%;
    margin: 0;
}

a {
    color: #0d5baf;
}

label {
    color: #445;
}

.content-header h1 {
    font-size: 1.3rem;
    padding-top: 5px;
    padding-left: 7px;
    padding-bottom: 5px;
    color: #444;
    display: flex;
    align-items: center;
}
.content-header h1::before {
    content: "";
    display: inline-block;
    width: 5px;
    height: 1.8rem;
    background-color: #888;
    margin-right: 12px;
    vertical-align: middle;
}

.bg-image {
    background-image: url('/images/login_background.jpg'); /* ここに背景画像のパスを指定 */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}

.container {
    position: relative;
    z-index: 1;
}

.content-wrapper {
    background-image: url('/images/login_background_2.jpg');
    background-size: cover; /* 画像をコンテナにフィットさせる */
    background-position: center; /* 画像を中央に配置する */
    background-repeat: no-repeat; /* 画像の繰り返しを無効にする */
}

/* Button */
.btn-info {
    background-color: #3ba4b5;
    border-color: #3ba4b5;
}
.btn-link {
    color: #0d5baf;
}

/* Card */
.card {
    box-shadow: 0 0 1px rgba(0, 0, 0, .125), 0 2px 5px rgba(0, 0, 0, .3);
    margin-bottom: 20px;
}
.card-body {
    padding: 0.7rem 1.1rem 1.0rem 1.1rem;
    background-color: #fff;
}
.card-header {
    height: 2.3rem;
    padding: 0.6rem 0.6rem;
}
.card-title {
    font-size: 1rem;
    font-weight: bold;
}
.card-footer {
    padding: .85rem 1.35rem;
    background-color: #fff;
    border-top: 1px solid #dde;
}
.card label {
    font-size: 0.8rem;
    margin-bottom: 4px;
}
.card-info:not(.card-outline)>.card-header {
    background-color: #3ba4b5;
}

/* Form */
.form-control {
    padding: .375rem .5rem;
    border-radius: 0.1rem;
    border: 1px solid #b6b9bb;
    color: #111;
}
.form-control:focus {
    color: #22262b;
}
.form-group {
    margin-bottom: 0.6rem;
}
.error-message {
    color: #dc3545;
    font-size: 0.9rem;
    font-weight: bold;
    padding: .28rem .28rem;
}
.error-message:before {
    content: "※";
}
.required::after {
    content: '*';
    margin-left: 0.1rem;
    color: #e14d5b;
}

/* Background */
.bg-success {
    background-color: #279b42 !important;
}
.bg-primary {
    background-color: #368be7 !important;
}
.bg-success {
    background-color: #169f36 !important;
}
.small-box>.small-box-footer {
    background-color: rgba(0,0,0,.1);
}

/* Small box */
.small-box h3 {
    font-size: 1.2rem !important;
}
.small-box p {
    font-size: 0.8rem;
}

/* Footer */
.main-footer {
    color: #40484f;
}

/* Pagination */
.page-link {
    color: #0d5baf;
}

/* Table */
.table-sm thead th {
    font-size: 0.75rem;
    color: #666;
    border-bottom: 1px solid #dee2e6;
}
.table-sm th, .table-sm td {
    font-size: 0.95rem;
    padding-top: 8px;
}
.price-list-table td, .price-list-table th {
    min-width: 120px;
}

/* Number input */
.number-input {
    border-radius: 0;
    width: 35px;
}

/* Toggle button */
.switch {
    position: relative;
    display: inline-block;
    width: 42px;
    height: 23.8px;
}
.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}
.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: .4s;
    border-radius: 23.8px;
}
.slider:before {
    position: absolute;
    content: "";
    height: 18.2px;
    width: 18.2px;
    left: 2.8px;
    bottom: 2.8px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
}
input:checked + .slider {
    background-color: #3BA4B5;
}
input:checked + .slider:before {
    transform: translateX(18.2px);
}
.switch-sm {
    width: 25.2px;
    height: 14.28px;
}
.switch-sm .slider {
    border-radius: 14.28px;
}
.switch-sm .slider:before {
    height: 10.92px;
    width: 10.92px;
    left: 1.28px;
    bottom: 2px;
}
.switch-sm input:checked + .slider:before {
    transform: translateX(10.92px);
}

/* Spinner */
.spinner-border {
    width: 1rem;
    height: 1rem;
    border-width: 0.15em;
}
.spinner-container {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
}

/* Number Panel */
#vue-number-panel {

    max-width: 200px;

}
