/**
 * 楽坊FAXシステム
 * 20240521
 */

body, html {
  height: 100%;
}

body.login {
  background-color: #eeeeee;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  margin: 0;
}

h2 {
  font-size: 200%;
  font-weight: bold;
  border-bottom: solid 2px #003285;
  padding: 0 0 10px 0;
  margin-bottom: 30px !important;
}

h3 {
  font-size: 175%;
  font-weight: bold;
  margin-bottom: 10px !important;
}
    h3 span {
      font-weight: normal;
      font-size: 75%;
    }

h5 {
  font-size: 150%;
  font-weight: bold;
  margin-bottom: 30px !important;
  line-height: 1.5;
}
    h5 span {
      font-weight: normal;
    }

.login-card {
  width: 100%;
  max-width: 400px;
  padding: 10px 15px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  border: none;
  border-radius: 10px;
}

img.logo {
    max-width: 64px;
}

/* ADMIN MAIN */

#sidebar-base {
  background: #003285;
}
#sidebar {
  height: 100vh;
  background: #003285;
  color: #fff;
  transition: all 0.3s;
  min-width: 200px;
}
#sidebar.active {
  min-width: 58px;
  max-width: 58px;
}
#sidebar .list-group-item {
  background: #003285;
  color: #fff;
  border: none;
  display: flex;
  align-items: center;
}
#sidebar .list-group-item:hover {
  background: #2A629A;
  text-decoration: none;
}
#sidebar .list-group-item.active {
  background: #2A629A;
}
#sidebar .list-group-item .fas {
  margin-right: 10px;
}
#sidebar.active .list-group-item .menu-text {
  display: none;
}
#sidebar i {
  min-width: 20px;
  text-align: center;
}
#sidebarCollapse {
  width: 40px;
  height: 40px;
  background: #003285;
  color: #fff;
  border: none;
}

#content {
  width: 100%;
  padding: 20px 30px;
  box-shadow: inset 4px 0px 8px rgba(0, 0, 0, 0.1);
  background: #fff;
}
    #content a {
        color: #003285;
    }
    #content a.btn-outline-danger:hover {
        color: #fff;
    }
    
    #content p {
        margin: 1em 0;
    }

.note {
    margin: 10px 0 30px 0;
    border: solid 1px #999;
    border-radius: 10px;
    padding: 1em;
    font-size: 90%;
}


.table-mc {
    font-size: 80%;
    table-layout: fixed;
}
    .table-mc th, .table-mc td {
        vertical-align: middle;
    }
    .table-mc thead th,
    .table-mc thead td {
        background: #666;
        color: #fff;
    }
    .table-mc thead th {
        text-align: center;
    }
    .table-mc tbody th {
        text-align: center;
    }
    .table-mc tbody td {
        text-align: center;
    }
    .table-mc tbody td.ng {
        color: #c00;
        font-weight: bold;
        text-align: center;
    }

.form-control {
    background-color: #f8f8f8;
}


.panel-button {
    width: 270px;
    height: 220px;
    transition: all 0.3s;
    background: #f0f0f0;
    border: 1px solid #003285;
    box-shadow: 0 5px 10px rgba(0,0,0,0.2);
}
.panel-button:hover {
    transform: translateY(-3px);
    border: 1px solid #003285;
    box-shadow: 0 5px 10px rgba(0,0,0,0.1);
    
}

