html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
  background-color: aliceblue;
}


.bbwn {
    border-bottom-width: 0px !important;
}
.cr{
    color: red;
}
.cb {
    color: blue;
}
.co {
    color: orange;
}
.cg{
    color: green;
}
.cgray{
    color: lightgrey;
}

.bg-myapp {
  background-color: aliceblue;
}

/* formの項目にスペースを追加 */
.form-floating {
    margin-bottom: 20px; 
}

/*システム名タイトル*/
a.app-name {
    margin-left: 5px;
/*    border: solid 2px forestgreen;*/
    background-color: cadetblue;
    border-radius: 5px;
    padding: 3px 10px;
    color: white !important;
}

/*管理者用ページの背景色*/
body.admin {
    margin-bottom: 60px;
    background-color: lightyellow;
}

.bg-admin-myapp {
    background-color: lightyellow;
}

/*管理者用ページへのリンク*/
a.to-admin-page {
    border: solid 1px red;
    border-radius: 10px;
    background-color: pink;
    color: red !important;
}
a.to-user-page {
    border: solid 1px green;
    border-radius: 10px;
    background-color: lightgreen;
    color: green !important;
}


/* HTTPログ */
table.http-log tr td {
    /* 一行の高さを揃えたい場合はこっちを使う
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    */
    overflow-wrap: break-word;
}

.small-font {
    font-size: 6px;
}

.table th {
    position: sticky;
    top: 0;
    background-color: lavender;
}
