﻿@charset "UTF-8";
.nl2br {
  white-space: pre-wrap;
}

dl.detail-body {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  width: 100%;
  border-bottom: none;
}
dl.detail-body dt {
  padding: 5px;
  width: 190px;
  text-align: right;
}
dl.detail-body dd {
  padding: 5px;
  width: calc(100% - 190px);
  margin-bottom: 0px;
  word-break: break-all;
}

div.dailyevent {
  display: flex;
  flex-direction: column;
  width: stretch;
  height: stretch;
}
div.dailyevent .control {
  text-align: end;
}
div.dailyevent .control i.bi {
  margin: 0px 2px;
}
div.dailyevent .editlink {
  flex-grow: 0;
  border: 1px solid #ddd;
  border-radius: 5px;
  display: inline-flex;
  padding: 0px 8px;
  margin: 2px;
  background-color: aquamarine;
}

.table-sort-toggle {
  text-decoration: none;
  display: block;
}
.table-sort-toggle.asc:after {
  content: "▲";
  font-size: 60%;
  margin-left: 0.5em;
}
.table-sort-toggle.desc:after {
  content: "▼";
  font-size: 60%;
  margin-left: 0.5em;
}
