@import '/css/hajime_classic_main.css';

.hyozan-button {
  height: 32px;
  box-sizing: border-box;
  color: #16191f;
  display: inline-block;
  padding-left: 20px;
  padding-right: 20px;
  align-items: flex-start;
  font-size: 14px;
  font-weight: 700;
  font-family: "Amazon Ember", "Helvetica Neue", Roboto, Arial, sans-serif;
  
  border-bottom-style: solid;
  border-bottom-width: 1px;
  border-image-outset: 0;
  border-image-repeat: stretch;
  border-image-slice: 100%;
  border-image-source: none;
  border-image-width :1;
  border-left-style: solid;
  border-left-width: 1px;
  border-right-style: solid;
  border-right-width: 1px;
  border-top-style: solid;
  border-top-width: 1px;
  cursor: pointer;
}

.active:hover {
  background-color: #ec7211;
  border-color: rgb(255,153,0);
}

.active {
  background-color: #ff9900;
  
}

.secondary {
  background-color: rgb(68,185,214);
  /* background-color: rgb(135,177,234); */
  
}

.secondary:hover {
  background-color: rgb(68,185,255);
  border-color: rgb(68,185,255);

}

.danger {
  background-color: rgb(219, 62, 62);
}

.danger:hover {
  background-color: rgb(255, 62, 62);
  border-color: rgb(255, 62, 62);

}
.cancel {
  background-color: rgba(0,0,0,0);
  border-color: rgba(0,0,0,0);
  color: rgb(200,200,200);
}


.dashboard-header {
  display: flex;
  align-items: center;
  background-color: rgb(35,35,35);

}

.dashboard-title {
  flex: 10;
  font-size: 16px;
  font-weight: 800;
  justify-self: flex-start;
  max-width: fit-content;
  margin-left: 30px;
  height: 50px;
}

.dashboard-spacer {
  flex: 60;
}
.dashboard-controls {
  flex: 30;
  justify-items: flex-end;
  justify-self:flex-end;
  display: flex;
}

.refresh {
  flex: 10;
  max-width: 100px;

}

.refresh div {
  width: 30px;
  height: 30px;
  border-color: rgb(200,200,200);
  border-style: solid;
  border-width: 1px;
  border-radius: 5px;
  background-color: gray;
}

.refresh div:hover {
  background-color: white;
}

.refresh div img {
  max-width: 20px;
  max-height: 20px;
  margin: 5px;
}

.refresh button {
  appearance: button;
  background-color: black;
  width: 30px;
}
.hyozan-table {
  display: table;
  width: 100%;
  text-align: start;
  font-size: 14px;
  line-height: 30px;
  border-color: rgb(90,90,90) ;
  border-style: solid;
  border-width: 1px;
  color : rgb(213,219,219);
  border-collapse: collapse;
}

.hyozan-table-header {
  background-color: rgb(20,20,20);
}

.hyozan-table-header-tr {
  text-align: center;
}

.hyozan-table th {
  text-align: left;
  padding-left: 10px;
}

.hyozan-table-row {
  background-color: rgb(35,35,35);
  border-top: rgb(80,80,80);
  border-top-style: solid;
  border-top-width: 1px;
  border-collapse: collapse;
}

.hyozan-table-row td {
  padding-left: 10px;
  padding-right: 5px;
  font-size: 14px;
}

.hyozan-table a {
  color: rgb(68,215,214);
  text-decoration: underline;
  font-size: 14px;
}

.modal-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
    backdrop-filter: blur(5px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}


.hyozan-form-container {
    width: 600px;
    
}

.hyozan-form {
  display: flex;
  flex-direction: column;

  background-color: var(--form-background-color);
  border-color: var(--form-border-color);
  border-width: 1px;
  border-style: solid;
  margin-top: 40px;
  justify-items: flex-start;
  justify-content: left;
  height: 400px;
}

.form-heading {
  display: flex;
  background-color: var(--form-heading-background-color);
  width: 100%;
  min-height: 50px;
  
}

.form-header-holder {
  padding-left: 20px;
  margin-top: auto;
  margin-bottom: auto;
}

.hyozan-form-title {
  font-size: 16px;
}


.form-fields-area {
  margin-left: 20px;
  padding-top: 20px;
  width: 80%;
  flex-grow: 1;
}

.hyozan-form-field {
  display: flex;
  flex-direction: column;
  border-bottom-style: solid;
  border-collapse: collapse;
  border-color: var(--form-field-border-color);
  border-width: 1px;
  padding-top: 10px;
  padding-bottom: 10px;
  width: 100%;
}

.hyozan-form-field-label {
  font-size: 14px;
  padding-bottom: 8px;
}

.hyozan-form-field-explanation {
  font-size: 12px;
  color: var(--form-field-explanation-color);
  padding-bottom: 8px;
}

.hyozan-form-input {
  width: 100%;
  background-color: var(--form-field-input-color);
  padding: 8px 16px 8px 16px;
  font-family: 'Amazon Ember', sans-serif;
  font-size: 14px;
  line-height: 24px;
  color: white;
  border-color: var(--form-input-color);
  border-width: 1px;
  outline-color: var(--form-field-input-outline-color);
  border-style: solid;
  border-radius: 4px;
}

.hyozan-form-button-area {  
  background-color: var(--form-button-background-color);
  align-items: center;
  display: flex;
  flex-direction: row-reverse;
  gap: 10px;
  min-height: 60px;
  margin-top: auto;

}

.hyozan-form-button-holder {
  margin-top: auto;
  margin-bottom: auto;
  min-height: 30px;
  height: 30px;
  min-width: fit-content;
  max-width: 40px;
  padding-right: 30px;
}

textarea .triple-line {
  background-color: aqua;
}

.hyozan-form-subform-holder {
  width: 100%;
  border-color: var(--form-subform-border-color);
  border-radius: 5px;
  border-style: solid;
  border-width: 1px;
  margin: 10px 20px 10px 20px;
  padding: 10px 20px 10px 20px;
}

.hyozan-form-file-input-hidden {
  opacity: 5%;
  position:relative;
  left:-80px;
  top:0;
}

.hyozan-form-upload-button {
  color: rgb(200,200,200);
  padding-top: 5px;
  padding-bottom: 5px;
  border-radius: 5px;
  background-color: rgb(29, 111, 124);
}

.hyozan-form-list-with-checks {
  width: 100%;
  border-color: rgb(50,50,50);
  border-style: solid;
  border-width: 1px;
  display: flex;
  flex-direction: column;
  padding: 20px 0px 20px 20px;
  margin-bottom: 10px;
}

.hyozan-form-list-row-with-check {
  display: flex;
  flex: 1;
  align-items: center;
}

.hyozan-form-row-check-holder {
  height: 20px;
  margin-right: 20px;
}

.hyozan-form-row-text-holder {
  align-content: center;
  height: 30px;
}

.hyozan-form-row-text {
   font-size: 16px; 
}

.hyozan-form-display-envelope {
  margin-left: 20px;
  padding-top: 20px;
  padding-bottom: 20px;
  width: 95%; 
}

.hyozan-form-display-segment {
  border-width: 1px;
  border-color: rgb(60,60,60);
  border-style: solid;
  border-radius: 5px;
  padding: 10px;
}

.hyozan-form-display-pair {
  display: block;
}

.hyozan-form-display-label {
  font-size: 12px;
  font-style: italic;
  color: rgb(200,200,200);
}

.hyozan-form-display-value {
  background-color: rgb(30,30,30);
}

.hyozan-form-display-value p {
  font-size: 14px;
}

.hyozan-form-file-list {
  columns: 2;
  padding-top: 10px;
}

.hyozan-form-file-link-holder  {
  padding-top: 5px;
}

.hyozan-form-file-link {
  color: rgb(68,185,214);
  font-size: 14px;
}

.hyozan-form-waiting {
  z-index: 1001;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.5);
  display: none;    /* This will be modified via JS */
  justify-content: center;
  align-items: center;
}

.hyozan-form-page {
}

.hyozan-form-page-active {
}

.hyozan-form-page-inactive {
  display: none;
}

.hyozan-form-submit {
  display: none;
}

.hyozan-form-submit.active {
  display: flex;
}

/* ID Based section below... These will be specific per form. */
#hyozan-form-hero-container {
  display: none;
}

#hyozan-form-multi-container {
  display: none;
}
