.actionbutton {
  background-color: #4a84a5;
  color: #ffffff;

  width: 150px;
  /* 	height:40px; */

  border: 0px solid #ababab;
  display: inline-block;
  cursor: pointer;
  font-family: Arial;
  /* 	font-size:0.6vw; */
  padding: 3px;
  text-decoration: none;
  text-shadow: 1px 1px 2px #00227d;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0px;
  /* 	margin-right:7px; */
  font-weight: bold;
  border-radius: 7px;
  box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
}

.actionbutton:hover {
  color: #ff9900;
  text-shadow: 0px 0px 0px #00227d;
}

.actionbuttonhovergreen:hover {
  /* 	color:#18ab29; */
  background-color: #2db32d;
  /* 	color:#000000; */
  /* 	font-size: 0.6vw; */
  /* 	text-shadow:0px 0px 0px #00227d; */
}

.actionbutton.active {
  position: relative;
  background-color: #99c7e3;
}

.actionbutton a {
  color: #ffffff;
}

.actionbutton a:hover {
  color: #000000;
  text-shadow: 0px 0px 0px #00227d;
}

.actionbutton.active a {
  color: #000000;
  font-size: 0.7vw;
  font-weight: bold;
  text-shadow: 0px 0px 0px #00227d;
}

.actionbutton:disabled {
  color: #ababab;
  background-color: #cdcdcd;
  text-shadow: 0px 0px 0px #00227d;
}

.listactionbutton {
  background-color: #4a84a5;
  color: #ffffff;

  border: 0px solid #ababab;
  display: inline-block;
  cursor: pointer;
  font-family: Arial;

  padding: 6px;
  padding-top: 0px;
  padding-bottom: 0px;
  text-decoration: none;
  text-shadow: 1px 1px 2px #00227d;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0px;
  /* 	margin-right:7px; */
  font-weight: bold;
  border-radius: 3px;
  box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
}

.listactionbutton:hover {
  color: #ff9900;
  text-shadow: 0px 0px 0px #00227d;
}

.datepickerbutton {
  background-color: #efefef;
  color: #000000;

  border: 1px solid #d6cde8;
  display: inline-block;
  cursor: pointer;
  font-family: Arial;
  font-size: "14px";

  padding: 6px;
  padding-top: 3px;
  padding-bottom: 3px;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0px;
  font-weight: bold;
  border-radius: 5px;
  box-shadow: 0 2px 3px rgba(0, 0, 0, 0.22);
}

.datepickerbutton:hover {
  background-color: #c0e6bc;
  /* 	text-shadow:0px 0px 0px #00227d; */
}

/* radio button styling */
.mywarcontainer {
  display: block;
  position: relative;
  padding-left: 25px;
  margin-bottom: 12px;
  cursor: pointer;
  font-size: 14px;
  font-weight: normal;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* Hide the browser's default radio button */
.mywarcontainer input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

/* Create a custom radio button */
.mywarcheckmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 20px;
  width: 20px;
  background-color: #eee;
  border-radius: 50%;
}

/* On mouse-over, add a grey background color */
.mywarcontainer:hover input ~ .mywarcheckmark {
  background-color: #ccc;
}

/* When the radio button is checked, add a blue background */
.mywarcontainer input:checked ~ .mywarcheckmark {
  background-color: #4a84a5;
}

/* Create the indicator (the dot/circle - hidden when not checked) */
.mywarcheckmark:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the indicator (dot/circle) when checked */
.mywarcontainer input:checked ~ .mywarcheckmark:after {
  display: block;
}

/* Style the indicator (dot/circle) */
.mywarcontainer .mywarcheckmark:after {
  top: 4px;
  left: 4px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: white;
}

.ceminput {
  font-size: 16px !important;
}

/* ==================================================================================================== */
/* App notifications ================================================================================== */
/* ==================================================================================================== */

#app-status-area {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  display: flex;
  flex-direction: column-reverse; /* Newest toast appears at the bottom visually */
  align-items: center;
  pointer-events: none;
  z-index: 10000;
  padding-bottom: 10px;
}

/* Toasts should visually stack upward */
#app-status-area .toast {
  animation: toastFadeIn 0.3s ease-out;
}

@keyframes toastFadeIn {
  from {
    opacity: 0;
    transform: translateY(20%);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Optional for spacing so they grow upward from the bottom */
#app-status-area .toast + .toast {
  margin-bottom: 6px;
}

.loginPage {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: start;
  min-height: 800px;
}

.personpostholder {
  width: 100%;
  flex-wrap: nowrap;
  margin-bottom: 20px;
  border: 1px solid #999999;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  padding: 10px;
  background-color: #fff;
  width: 100%;
}

.editorrowhide {
  display: none;
}

.editorrowshow {
  display: flex;
}

.scrollablelistbox-row {
  cursor: pointer;
  width: 100%;
  box-sizing: border-box;
  display: flex;
  flex-wrap: nowrap;
}



.mywar-dropdown-container {
  position: relative;
  width: 100%;
}

.mywar-select {
  width: 100%;
  padding: 6px 4px;
  border: 1px solid #ccc;
  border-radius: 8px;
  background-color: white;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  font-size: 16px;
  color: #333;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.mywar-select:focus {
  border-color: #ff9900;
  box-shadow: 0 0 0 3px rgba(108, 99, 255, 0.2);
  outline: none;
}

/* Arrow icon overlay */
.mywar-dropdown-container::after {
  content: "▾";
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  color: #666;
  pointer-events: none;
}

.row-editor {
  background-color: #dcf0e5;
  border-color: #2e8b57;
}

.person-tag {
  display: inline-block;
  margin: 3px; 
  padding: 3px 6px;
  background: #cbeafd;
  border-radius: 4px;
  font-size: 13px;
  font-weight: bold;;
  cursor: pointer;
  box-shadow:rgba(0, 0, 0, 0.2) 0px 1px 3px;
}


.selectablerow {
  cursor: pointer;
  align-items: center;
  font-weight: bold;
  border: 1px solid #ababab;
  border-radius: 5px;
  font-size:16px;
  box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
  padding: 5px;
  margin-top: 5px;
  margin-bottom: 5px;
}

.selectablerow:hover {
  color: #ff9900;
  text-shadow: 0px 0px 0px #00227d;
}

.selectablerow.active {
  background-color: #dbf4e3;
}

/* from zttScreens_v04.js for pdf maker  */
.rb-postdiv {
  padding:10px;
  border-radius:8px 8px 0px 0px;
  border:0.5px solid #d6cde8; 
  background-color:#ffffff;
  box-shadow:0 3px 5px rgba(0, 0, 0, 0.22);
}

.wrapper {
  flex-wrap:wrap;
}
