﻿html {
    font-size: 15px;
}

html, body, form {
    background-color: ghostwhite;
    min-height: 100%;
}

.background-image-login {
    position: relative;
    background-image: url('Images/backgroundphoto-login-min.jpg');
    background-position: center;
    background-size: cover;
    height: 100vh;
    width: 100%;
}

.container.login-form{
    min-height: 100%;
    background-color: rgba(64, 64, 64, 0.6);
    padding-top: 15vh;
}

.top-menu {
    background-color: darkgray;
    border-bottom: 2px var(--main-menu-color) solid;
    height: 2.5rem;
}

.nav-pills .nav-link.active {
    background-color: var(--main-menu-color);
    color: white;
}

.nav-pills .nav-link:not(.active) {
    color: var(--dark);
}

.nav-pills .nav-link:hover:not(.active) {
    background-color: var(--sub-menu-color);
}

.nav-pills .nav-link.account {
    color: var(--dark);
    pointer-events: none;
}

.card.card-link{
    transition: border-color 0.5s;
}

.card.card-link:hover{
    border-color: var(--main-bg-color);
}

.col-title{
    max-width: 8em;
    color: dimgray;
}

.card {
    border-radius: 0;
}

.card-header {
    background-color: var(--main-bg-color);
    color: white;
    border-radius: 0;
}

    .card-header:first-child, .card-body, .card-footer {
        border-radius: 0;
    }

.bg-main {
    background-color: var(--main-bg-color);
}

.bg-sub {
    background-color: var(--sub-bg-color);
}

.bg-gray{
    background-color: darkgray;
}

.text-gray {
    color: darkgray;
}

.input-prefecture{
    max-width: 8em;
}

.input-honerific {
    max-width: 8em;
}

.input-postalcode {
    max-width: 8em;
}

.table tbody {
    background-color: white;
}

.table th {
    background-color: var(--main-bg-color);
    color: white;
}

table.table-sub th {
    background-color: dimgray;
    color: white;
}

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    border-radius: 4px;
    box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.1);
}

::-webkit-scrollbar-thumb {
    background-color: dimgray;
    border-radius: 4px;
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.3);
}

.table-scroll {
    display: block;
    overflow-y: scroll;
}

.table-scroll table {
    margin-bottom: 0px;
}

    .table-scroll th, .table-scroll thead {
        position: sticky;
        top: 0;
        border-top: 0px;
    }

.table-700 {
    max-height: 700px;
}

.asp-modal-overlay {
    z-index: 1;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 120%;
    background-color: rgba(0,0,0,0.60);
}

.asp-modal-contents {
    z-index: 2;
    position: fixed;
    background-color: white;
    width:60%;
    max-width: 600px;
    min-width: 400px;
    max-height: 700px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.title {
    color: dimgray;
    margin: 0;
}

.movable-handle{
    cursor: grab;
}

.drag .movable-handle{
    cursor: move;
}