/* Bulmaのインポート */
@import "https://cdn.jsdelivr.net/npm/bulma@0.9.3/css/bulma.min.css";

* {
  box-sizing: border-box;
}

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

body {
  display: flex;
  flex-direction: column;
  background-color: silver;
}

.appTitle {
  display: block;
  text-align: center;
}

.p-canvasWrapper {
  width: 300px;
  height: 300px;
  position: relative;
  margin: 0 auto;
}

.p-graph {
  position: absolute;
  top: 0;
  left: 0;
  transform: rotate(-90deg);
}

.p-graphTime {
  position: absolute;
  width: 300px;
  height: 300px;
  font-size: xx-large;
  font-weight: bold;
  text-align: center;
  top: 3.8em;
}

.p-graphText {
  position: absolute;
  width: 300px;
  height: 300px;
  font-size: xx-large;
  text-align: center;
  top: 4.9em
}

.p-inputForm {
  margin: 0 auto;
  text-align: center;
}

/* inputの横幅を指定する */

.p-itemText {
  width: 8em;
}

.content {
  vertical-align: bottom;
}

.p-btnGroup {
  width: 370px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
}

.p-table {
  margin:auto;
  margin-top: 0;
  background-color: silver;
}

.p-rowRemainTime {
  color: #363636;
}

.p-rowRemainTimeOver {
  color: red;
}

.delete {
  margin-left: auto;
  margin-right: auto;
}

/* iwb.jpを参考 */
footer{
  margin-top: auto;
  text-align: center;
  background-color: silver;
}