/* cmsms stylesheet: all modified: 12/08/25 17:10:25 */
#cookie_popup {
    position: fixed;
    bottom: 0px;
    right: 0px;
    width: 300px;
    z-index: 99999999;
    box-sizing: border-box;
    padding: 10px;
    color: #ffffff;
    background-color: #000000bf;
    font-size: 80%;
}

#cookie_popup a:link, #cookie_popup a:visited, #cookie_popup span {
color: #ffffff;
transition: color 0.4s;
cursor: pointer;
}

#cookie_popup a:hover, #cookie_popup span:hover {
color: #b4b387;
}

.hidden {
display: none;
}

.tinyBox {
width: 25%;
min-width: 150px;
margin: auto;
}

.narrowBox {
width: 36%;
min-width: 320px;
margin: auto;
}

.midBox {
width: 60%;
min-width: 320px;
margin: auto;}

.wideBox  {
width: 90%;
min-width: 320px;
margin: auto;
}

.fixed {
    position:  fixed;
    background-color: #ffffffd4;
    box-sizing:  border-box;
    padding-top:  50px;
}
.fullScreen  {
    top: 0;
    bottom:  0;
    left:  0;
    right: 0;
}
.topLayer {
    z-index:  999999;
}

.centerText {
text-align: center;
    justify-content: center;
}

.smallText {font-size: 60%;}
.blockSmallText {display: block;}

#pageVariables {
    width: 100px;
    height: 100px;
    border: 1px solid red;
    padding: 20px;
    overflow: auto;
    position: fixed;
    top:20px;
    left: 20px;
    background: #fff;
    font-size: 11px;
    line-height: 1.3;
    white-space: pre;
}

#pageVariables pre {
    margin: 0;
}

#pageVariables .resize-handle {
    width: 12px;
    height: 12px;
    position: absolute;
    right: 0;
    bottom: 0;
    cursor: nwse-resize;
    background: rgba(0, 0, 0, 0.3);
}
/* cmsms stylesheet: forms modified: 12/08/25 17:10:25 */
.formBox p {
margin-bottom: var(--bigpad);
}

.inputRow {
	display:  flex;
	gap: var(--midgap);
	height: 50px;
	margin-bottom: var(--midpad);
}

.generalRow {
    height: auto;
}

.textareaRow
 {
    height: 450px;
}

.inputRow label {
    width: 30%;
    justify-content: center;
    box-sizing: border-box;
    padding-top: var(--midpad);
}

.inputRow label.checkboxRow {
width: auto;
display: inline-flex;
gap: var(--midgap);
flex-direction: row;
}

.inputRow label.checkboxRow input {
width: 30px;
height: 30px;
position: relative;
top: -7px;
}

.inputRow  input, .inputRow select {
    flex: 1;
    box-sizing: border-box;
    border: 1px solid var(--border);
    -webkit-border-radius: 12px;
    -moz-border-radius: 12px;
    border-radius: 12px;
    height: 50px;
}

.inputRow textarea
 {
         flex: 1;
    box-sizing: border-box;
    border: 1px solid var(--border);
    -webkit-border-radius: 12px;
    -moz-border-radius: 12px;
    border-radius: 12px;
        height: 450px;
        display: block;
        width: 100%;
}

input[type="file"].textInput.fullWidthInput {
    padding: var(--midpad);
    background-color: #fff; /* Or any background to match your other inputs */
    width: 100%; /* Ensure it fits the full width like other fields */
}

.fbsubmit {
    box-sizing: border-box;
    border: 1px solid var(--border);
    -webkit-border-radius: 12px;
    -moz-border-radius: 12px;
    border-radius: 12px;
    height: 50px;
    padding: 0 var(--midpad) 0 var(--midpad);
    font-size: 120%;
    font-family: 'Nunito Sans', system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Helvetica, Arial, sans-serif;
	color: var(--panel);
	background-color: var(--brand-purple);
}

.fbsubmit:hover {
	background-color: var(--brand-green);
}

.singleButtonSubmit {
	height: 70px;
	padding: 0 var(--bigpad) 0 var(--bigpad);
	font-size: 140%;
	margin-top: var(--midpad);
}

/* The label acts as a positioning context and reserves space for the icon */
.ptHasHelp {
  position: relative;
  display: inline-block;   /* was inline-flex */
  padding-right: 22px;     /* reserves space so text alignment is consistent */
  vertical-align: middle;
}

/* Absolutely position the icon so it doesn't affect label layout */
.ptHelpIcon {
  position: relative;
  top: 11px;
  right: 0;
  transform: translateY(-50%);
  border: 0;
  padding: 0;
  margin: 0;
  background: transparent;
  cursor: pointer;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  opacity: 0.8;
}
.ptHelpIcon:hover,
.ptHelpIcon:focus { opacity: 1; outline: none; }

/* Keep tooltip fully out of flow (no layout impact) */
.ptHelpBox {
  position: absolute;   /* ensures it never pushes label text */
  top: 100%;
  left: 0;
  transform: translateY(8px);
  max-width: min(36ch, 70vw);
  z-index: 9999;

  background: #111;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 10px;
  padding: 10px 12px;
  font-size: 0.9rem;
  line-height: 1.35;

  box-shadow: 0 8px 24px rgba(0,0,0,0.25);
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  transition: opacity 120ms ease, transform 120ms ease, visibility 120ms;
}
.ptHelpBox::after {
  content: "";
  position: absolute;
  top: -6px;
  left: 12px;
  width: 10px; height: 10px;
  background: #111;
  border-left: 1px solid rgba(255,255,255,0.12);
  border-top: 1px solid rgba(255,255,255,0.12);
  transform: rotate(45deg);
}
.ptHelpBox.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateY(4px);
  pointer-events: auto;
}

/* Optional: flip alignment if near the right edge (kept from before) */
.ptHelpBox.align-right { left: auto; right: 0; }
.ptHelpBox.align-right::after { left: auto; right: 12px; }

.innerFormBlock {
    margin-bottom: var(--midpad);;
}

#visibleTags {display: flex; gap: var(--midgap);flex-wrap: wrap;    flex: 1;}

.clickableTag {
    background-color: var(--brand-lightgreen);
    padding: var(--midpad);
    transition: background-color 0.4s;
    cursor: pointer;
}

.clickableTagOn {
    border: 2px solid var(--border);
    background-color: var(--brand-lightpurple);
    font-weight: 700;
}

.clickableTag:hover {
    background-color: var(--brand-lightpurple);
}



/* tiny mce overrides */

.tox-tinymce {
width: 100% !important;
    flex: 1;
    border: 1px solid #000;
}

@media (max-width: 1640px) {
    
#login_form {
    min-width: 560px;
}

}

@media (max-width: 740px) {
    
#login_form {
    min-width: 320px;
}

.inputRow {
	display:  block;
	gap: var(--midgap);
	height: auto;
	margin-bottom: var(--midpad);
	flex-direction: column;
}

.inputRow label {
    width: 100%;
    justify-content: center;
    box-sizing: border-box;
    padding-top: var(--midpad);
    display: block;
}

.inputRow input, .inputRow select
 {
        height: 50px;
        display: block;
        width: 100%;
}

}
/* cmsms stylesheet: users modified: 12/08/25 17:10:25 */
.userTabs {
    
}

.tabList {
    list-style: none;
    padding: 0;
    display: flex;
    margin: 0;
    position: relative;
    z-index:2;
}

.tab {
    cursor: pointer;
    height: 40px;
    border-bottom: none !important;
    background-color: var(--greybacker);
    margin-right: 5px;
    -webkit-border-bottom-right-radius: 0px !important;
-webkit-border-bottom-left-radius: 0px !important;
-moz-border-radius-bottomright: 0px !important;
-moz-border-radius-bottomleft: 0px !important;
border-bottom-right-radius: 0px !important;
border-bottom-left-radius: 0px !important;
}

.tab.active {
    background-color: #fff;
    border-bottom: none;
    font-weight: bold;
    position: relative;
    bottom: -2px;
}

.tabContent {
    padding: 20px;
    background-color: #fff;
-webkit-border-top-left-radius: 0px !important;
-moz-border-radius-topleft: 0px !important;
border-top-left-radius: 0px !important;
    position: relative;
    z-index:1;
}
