/* components/paper.blade.php */
.component-paper {
  background: white;
  border-radius: 5px;
  box-shadow: 0px 1px 3px gray;
  padding: 10px;
}

/* components/alert.blade.php */
.component-alert {
  margin: 5px 0;
}
.component-alert-content {
  padding: 5px;
  border: 1px solid red;
  border-radius: 5px;
  background: rgba(238, 0, 0, 0.3);
}

/* components/success.blade.php */
.component-success {
  margin: 10px 0;
}
.component-success-content {
  padding: 5px;
  border: 1px solid green;
  border-radius: 5px;
  background: rgba(0, 238, 0, 0.3);
}

/* components/state-label.blade.php */
.component-statelabel {
  color: white;
  padding: 5px;
  font-weight: bold;
  border-radius: 5px;
}

/* components/state-label.blade.php */
.component-label {
  padding: 5px;
  font-weight: bold;
  border-radius: 5px;
}

/* components/button.blade.php */
.component-button {
  color: white;
  border-radius: 5px;
  padding: 5px;
  display: inline-block;
  transition: background 0.5s;
}

/* components/link-button.blade.php */
.component-linkbutton {
  color: white;
  border-radius: 5px;
  padding: 5px;
  display: inline-block;
  transition: background 0.5s;
}

/* components/unP....count.blade.php */
.component-counticon {
  border-radius: 30%;
  padding: 5px;
  margin-left: 5px;
}

/* components/title-paper.blade.php */
.component-titlepaper {
  margin: 10px;
  width: 30%;
}
.component-titlepaper-title {
  background: white;
  border-radius: 5px 5px 0 0;
  box-shadow: 0px 1px 3px gray;
  padding: 10px 20px;
  border-bottom: 1px solid lightgray;
}
.component-titlepaper-content {
  background: white;
  border-radius: 0 0 5px 5px;
  box-shadow: 0px 1px 3px gray;
  padding: 10px 20px;
  min-height: 145px;
}

/* components/condition-button.blade.php */
.component-condition-button {
  border: 1px solid black;
  border-radius: 5px;
  padding: 5px;
  display: inline-block;
  transition: background 0.5s;
}
