/*Global font*/
body {
    font-family: "Cabin", sans-serif;
    text-align: center;
}

/* Header title*/
h1, h2, h3, h4, h5, h6 {
    font-family: "Cabin", sans-serif;
}

/* Remove underline from links */
a {
    text-decoration: none;
}

/* Disable links */
.select2-container--disabled,
.select2-container--disabled[disabled] {
  opacity: .4;
  cursor: default !important;
  pointer-events: none;
}

/* Headings */
.big-heading {
    font-family: "Cabin", sans-serif;
    font-weight: bolder;
    font-size: 3rem;
    line-height: 1.5;
}

.section-heading {
    font-size: 3rem;
    line-height: 1.5;
}

p {
    color: #8f8f8f;
}

/* Containers */
.container-fluid {
    padding: 5% 15%;
}

/* Sections */
.colored-section {
    background-color: #73bf44;
    color: #fff;
}

.white-section {
    background-color: #fff;
}

/* Navigation Bar */
.navbar-dark .navbar-nav .nav-link {
    color: #fff;
}

.navbar {
    padding: 0 0 4.5rem;
}

.navbar-brand {
    font-family: "Cabin", sans-serif;
    font-size: 2.5rem;
    font-weight: bold;
}

.nav-item {
    padding: 0 18px;
}

.nav-link {
    font-size: 1.2rem;
    font-family: "Cabin", sans-serif;
    color: #ff4c68;
}



/* Form Buttons */
.form-button {
    /*Top, Right, Bottom, Left*/
    margin: 5% 3% 5.5% 2%;
    background-color: #73bf44;
}

/* Form Button Hover */
.form-button:hover {
    color: black;
    background-color: white;
}

/* Title Section */
/* Space specifies the parent selector then adds to next selector */
#title .container-fluid {
    padding: 3% 15% 7%;
    text-align: left;
 }

/* Title image */
.title-image {
  width: 30%;
  position: fixed;
  left: 70%; /* Center the image horizontally */
  top: 10%;  /* Position the image 10% from the top */
  transform: translateX(-50%); /* Adjust to truly center it */
  margin: 0 auto; /* Optional: ensures proper centering, though `transform` handles it */
}

/* Features Section */
#features {
    position: relative;
    background-color: white;
    color: black;
 }

.feature-title {
    font-size: 1.5rem;
}

/* .feature-box { */
    /*padding: 1%;*/

/* } */

.custom-forms {
    width: 50%;
    padding: 12px 20px;
    margin: 8px 0;
    box-sizing: border-box;
}

.icon {
  color: #ff4c68;
  margin-bottom: 1rem;
}

.icon:hover {
  color: #73bf44;
}

/* Login Display Links on Users Page */
/* .box {
    /*padding-top: 2%;*/
/* */

/* Documentation div */
.docs {
  /* width: fit-content;
  text-decoration: #000;
  text-align: left;*/
  padding-left: 30%;
  text-align: left;
  color: white;
  background-color: 009900;
  /* margin: 2px; */
  font-size: 20px;
}

.docs2 p{
  /* width: fit-content;
  text-decoration: #000;
  text-align: left;*/
  padding-left: 10%;
  text-align: left;
  color: white;
  background-color: #73bf44;
  /* margin: 2px; */
  font-size: 25px;
}

.outputs p{
  padding-left: 10%;
  text-align: left;
  color: black;
  font-size: 20px;
}

/* Section div blank content  */
#blank-div {
    width: 100%;
}

.blank-div{
  width: 100%;
}

/* Section div content with the iframe form */
#input-forms{
    /* background-color: #73bf44;*/
    width: 100%;
    height: 800px;
}

#input-forms iframe{
    border: none;
    width:100%;
    height:100%;
}

/* Testimonial Section */
#testimonials {
    background-color: white;
}

.testimonial-text {
    font-size: 3rem;
    line-height: 1.5;
}

.testimonial-image {
    width: 10%;
    border-radius: 100%;
    margin: 20px;
}

/* Press Section */
#press {
    background-color: #ef8172;
    padding-bottom: 3%;
}

.press-logo {
    width: 15%;
    margin: 20px 20px 50px;
}

/* Pricing Section */
#pricing {
    padding: 100px;
}

.price-text {
    font-size: 3rem;
    line-height: 1.5;
}

.pricing-column {
    padding: 3% 2%;
}


/* Tables */
.center {
  margin-left: auto;
  margin-right: auto;
}
/****************************************************/
.api-div {
  width:100%;
  height:100%;
}
/* Table style */
.styled-table {
    border-collapse: collapse;
    margin: 0 auto; /* or margin: 0 auto 0 auto */
  /*margin: 25px 0;*/
    font-size: 0.9em;
    font-family: sans-serif;
    min-width: 400px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
}
.styled-table thead tr {
  background-color: #73bf44;
  color: #ffffff;
  text-align: left;
}
.styled-table th,
.styled-table td {
    padding: 12px 15px;
}
.styled-table tbody tr {
    border-bottom: 1px solid #dddddd;
}

.styled-table tbody tr:nth-of-type(even) {
    background-color: #f3f3f3;
}

.styled-table tbody tr:last-of-type {
    border-bottom: 2px solid #009879;
}
/**************************************************/
/* Modal  (popup) */
.bg-modal {
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  /*opacity: 0.7;*/
  position: absolute;
  top: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  display: none;
}
.modal-content {
  width: 500px;
  height: 200px;
  background-color: white;
  border-radius: 4px;
  text-align: center;
  display: block;
  margin-left: auto;
  margin-right: auto;
  padding: 20px;
  position: relative;
}
input {
  width: 50%;
  display: block;
  margin: 20px auto;
}
.close {
  position: absolute;
  top: 0;
  right: 14px;
  font-size: 42px;
  transform: rotate(45deg);
  cursor: pointer;
}

/***************************************************/
/* Loyalty table editing */
.table-wrapper {
    width: 100%;  /* Ensures the wrapper takes full width */
    overflow-x: auto; /* Enables horizontal scrolling if needed */
}

.table {
  width: 100%; /* Ensures the table fills the div */
  table-layout: auto; /* Allows columns to adjust to content */
  border-collapse: collapse;
}

.table thead th {
    background-color: #73bf44; /* Green background */
    color: white; /* White text */
    text-align: left;
    padding: 10px;
}

th, td {
  border: 1px solid #ddd;
  padding: 10px;
  text-align: left;
  white-space: nowrap; /* Prevents text wrapping */
}

th {
  background-color: #f8f8f8;
  position: sticky;
  top: 0;
}

.custom-scrollbar {
    overflow-x: auto; /* Enables horizontal scrolling */
    white-space: nowrap; /* Prevents text from wrapping */
    max-width: 100%; /* Ensures the container does not overflow */
}

.custom-scrollbar::-webkit-scrollbar {
    height: 10px; /* Adjust scrollbar thickness */
}

.custom-scrollbar::-webkit-scrollbar-thumb {
    background: #888; /* Color of the scrollbar */
    border-radius: 5px;
}

.custom-scrollbar::-webkit-scrollbar-thumb:hover {
    background: #555;
}
/***************************************************/
/* Tables */
.handsontable {
    position: relative;
  }
  
  .handsontable.htAutoColumnSize {
    visibility: hidden;
    left: 0;
    position: absolute;
    top: 0;
  }
  
  .handsontable table,
  .handsontable tbody,
  .handsontable thead,
  .handsontable td,
  .handsontable th,
  .handsontable div {
    box-sizing: content-box;
    -webkit-box-sizing: content-box;
    -moz-box-sizing: content-box;
  }
  
  .handsontable table.htCore {
    border-collapse: separate;
    /*it must be separate, otherwise there are offset miscalculations in WebKit: http://stackoverflow.com/questions/2655987/border-collapse-differences-in-ff-and-webkit*/
    position: relative;
    /*this actually only changes appearance of user selection - does not make text unselectable
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -o-user-select: none;
    -ms-user-select: none;
    /*user-select: none; /*no browser supports unprefixed version*/
    border-spacing: 0;
    margin: 0;
    border-width: 0;
    table-layout: fixed;
    width: 0;
    outline-width: 0;
    /* reset bootstrap table style. for more info see: https://github.com/warpech/jquery-handsontable/issues/224 */
    max-width: none;
    max-height: none;
  }
  
  .handsontable col {
    width: 80px;
  }
  
  .handsontable col.rowHeader {
    width: 50px;
  }
  
  .handsontable th,
  .handsontable td {
    border-right: 1px solid #ccc;
    border-bottom: 1px solid #ccc;
    height: 22px;
    empty-cells: show;
    line-height: 21px;
    padding: 0 4px 0 4px;
    /* top, bottom padding different than 0 is handled poorly by FF with HTML5 doctype */
    background-color: #fffF;
    vertical-align: top;
    overflow: hidden;
    outline-width: 0;
    white-space: pre-line;

    /* preserve new line character in cell */
  }
  
  .handsontable td.htInvalid {
    -webkit-transition: background 0.75s ease;
    transition: background 0.75s ease;
    background-color: #ff4c42;

  }
  
  .handsontable th:last-child {
    /*Foundation framework fix*/
    border-right: 1px solid #ccc;
    border-bottom: 1px solid #ccc;
  }
  
  .handsontable tr:first-child th.htNoFrame,
  .handsontable th:first-child.htNoFrame,
  .handsontable th.htNoFrame {
    border-left-width: 0;
    background-color: white;
    border-color: #fff;
  }
  
  .handsontable th:first-child,
  .handsontable td:first-child,
  .handsontable .htNoFrame + th,
  .handsontable .htNoFrame + td {
    border-left: 1px solid #ccc;
  }
  
  .handsontable tr:first-child th,
  .handsontable tr:first-child td {
    border-top: 1px solid #ccc;
  }
  
  .handsontable thead tr:last-child th {
    border-bottom-width: 0;
  }
  
  .handsontable thead tr.lastChild th {
    border-bottom-width: 0;
  }
  
  .handsontable th {
    background-color: #73bf44;
    color: #222;
    text-align: center;
    font-weight: normal;
    white-space: nowrap;
  }
  
  .handsontable thead th {
    padding: 0;
  }
  
  .handsontable th.active {
    background-color: #ccc;
  }
  
  .handsontable thead th .relative {
    position: relative;
    padding: 2px 4px;
  }
  
  /* plugins */
  
  .handsontable .manualColumnMover {
    position: absolute;
    left: 0;
    top: 0;
    background-color: transparent;
    width: 5px;
    height: 25px;
    z-index: 999;
    cursor: move;
  }
  
  .handsontable th .manualColumnMover:hover,
  .handsontable th .manualColumnMover.active {
    background-color: #88f;
  }
  
  .handsontable .manualColumnResizer {
    position: absolute;
    top: 0;
    cursor: col-resize;
  }
  
  .handsontable .manualColumnResizerHandle {
    background-color: transparent;
    width: 5px;
    height: 25px;
  }
  
  .handsontable .manualColumnResizer:hover .manualColumnResizerHandle,
  .handsontable .manualColumnResizer.active .manualColumnResizerHandle {
    background-color: #aab;
  }
  
  .handsontable .manualColumnResizerLine {
    position: absolute;
    right: 0;
    top: 0;
    background-color: #aab;
    display: none;
    width: 0;
    border-right: 1px dashed #777;
  }
  
  .handsontable .manualColumnResizer.active .manualColumnResizerLine {
    display: block;
  }
  
  .handsontable .columnSorting:hover {
    text-decoration: underline;
    cursor: pointer;
  }
  
  /* border line */
  
  .handsontable .wtBorder {
    position: absolute;
    font-size: 0;
  }
  
  .handsontable td.area {
    background-color: #eef4ff;
  }
  
  /* fill handle */
  
  .handsontable .wtBorder.corner {
    font-size: 0;
    cursor: crosshair;
  }
  
  .handsontable .htBorder.htFillBorder {
    background: red;
    width: 1px;
    height: 1px;
  }
  
  .handsontableInput {
    border: 2px solid #5292f7;
    outline-width: 0;
    margin: 0;
    padding: 1px 4px 0 2px;
    font-family: Arial, Helvetica, sans-serif;
    /*repeat from .handsontable (inherit doesn't work with IE<8) */
    line-height: 1.3em;
    /*repeat from .handsontable (inherit doesn't work with IE<8) */
    font-size: inherit;
    -webkit-box-shadow: 1px 2px 5px rgba(0, 0, 0, 0.4);
    box-shadow: 1px 2px 5px rgba(0, 0, 0, 0.4);
    resize: none;
    /*below are needed to overwrite stuff added by jQuery UI Bootstrap theme*/
    display: inline-block;
    color: #000;
    border-radius: 0;
    background-color: #fff;
    /*overwrite styles potentionally made by a framework*/
  }
  
  .handsontableInputHolder {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 100;
  }
  
  .htSelectEditor {
    -webkit-appearance: menulist-button !important;
    position: absolute;
  }
  
  /*
  TextRenderer readOnly cell
  */
  
  .handsontable .htDimmed {
    color: #777;
  }
  
  /*
  TextRenderer placeholder value
  */
  
  .handsontable .htPlaceholder {
    color: #999;
  }
  
  /*
  AutocompleteRenderer down arrow
  */
  
  .handsontable .htAutocompleteArrow {
    float: right;
    font-size: 10px;
    color: #eee;
    cursor: default;
    width: 16px;
    text-align: center;
  }
  
  .handsontable td .htAutocompleteArrow:hover {
    color: #777;
  }
  
  /*
  CheckboxRenderer
  */
  
  .handsontable .htCheckboxRendererInput.noValue {
    opacity: 0.5;
  }
  
  /*
  NumericRenderer
  */
  
  .handsontable .htNumeric {
    text-align: right;
  }
  
  /*context menu rules*/
  
  ul.context-menu-list {
    color: black;
  }
  
  ul.context-menu-list li {
    margin-bottom: 0;
    /*Foundation framework fix*/
  }

  .handsontable .dragdealer {
    position: relative;
    width: 9px;
    height: 9px;
    background: #f8f8f8;
    border: 1px solid #ddd;
  }
  
  .handsontable .dragdealer .handle {
    position: absolute;
    width: 9px;
    height: 9px;
    background: #c5c5c5;
  }
  
  .handsontable .dragdealer .disabled {
    background: #898989;
  }
  
  /**
   * Handsontable in Handsontable
   */
  
  .handsontable .handsontable .wtHider {
    padding: 0 0 5px 0;
  }
  
  .handsontable .handsontable table {
    -webkit-box-shadow: 1px 2px 5px rgba(0, 0, 0, 0.4);
    box-shadow: 1px 2px 5px rgba(0, 0, 0, 0.4);
  }
  
  /**
   * Handsontable listbox theme
   */
  
  .handsontable.listbox {
    margin: 0;
  }
  
  .handsontable.listbox table {
    border: 1px solid #ccc;
    border-collapse: separate;
    background: white;
  }
  
  .handsontable.listbox th,
  .handsontable.listbox tr:first-child th,
  .handsontable.listbox tr:last-child th,
  .handsontable.listbox tr:first-child td,
  .handsontable.listbox td {
    border-width: 0;
  }
  
  .handsontable.listbox th,
  .handsontable.listbox td {
    white-space: nowrap;
    text-overflow: ellipsis;
  }
  
  .handsontable.listbox td.htDimmed {
    cursor: default;
    color: inherit;
    font-style: inherit;
  }
  
  .handsontable.listbox .wtBorder {
    visibility: hidden;
  }
  
  .handsontable.listbox tr td.current,
  .handsontable.listbox tr:hover td {
    background: #eee;
  }
  
  .htContextMenu {
    display: none;
    position: absolute;
  }
  
  .htContextMenu table.htCore {
    outline: 1px solid #bbb;
  }
  
  .htContextMenu .wtBorder {
    visibility: hidden;
  }
  
  .htContextMenu table tbody tr td {
    background: white;
    border-width: 0;
    padding: 4px 6px 0px 6px;
    cursor: pointer;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
  }
  
  .htContextMenu table tbody tr td:first-child {
    border: 0;
  }
  
  .htContextMenu table tbody tr td.htDimmed {
    font-style: normal;
    color: #323232;
  }
  
  .htContextMenu table tbody tr td.current {
    background: rgb(233, 233, 233);
  }
  
  .htContextMenu table tbody tr td.htSeparator {
    border-top: 1px solid #bbb;
    height: 0;
    padding: 0;
  }
  
  .htContextMenu table tbody tr td.htDisabled {
    color: #999;
  }
  
  .htContextMenu table tbody tr td.htDisabled:hover {
    background: white;
    color: #999;
    cursor: default;
  }
  
  .handsontable td.htSearchResult {
    background: #fcedd9;
    color: #583707;
  }
  
  /*WalkontableDebugOverlay*/
  
  .wtDebugHidden {
    display: none;
  }
  
  .wtDebugVisible {
    display: block;
    -webkit-animation-duration: 0.5s;
    -webkit-animation-name: wtFadeInFromNone;
    animation-duration: 0.5s;
    animation-name: wtFadeInFromNone;
  }
  
  @keyframes wtFadeInFromNone {
    0% {
      display: none;
      opacity: 0;
    }
  
    1% {
      display: block;
      opacity: 0;
    }
  
    100% {
      display: block;
      opacity: 1;
    }
  }
  
  @-webkit-keyframes wtFadeInFromNone {
    0% {
      display: none;
      opacity: 0;
    }
  
    1% {
      display: block;
      opacity: 0;
    }
  
    100% {
      display: block;
      opacity: 1;
    }
  }
  
  .handsontable tbody td {
    margin: 0;
    padding: 0;
    padding-right: 12px;
  }
  
  /*input {*/
  /*  border: none;*/
  /*  width: 100%;*/
  /*  height: 100%;*/
  /*  font-family: Verdana, Helvetica, Arial, FreeSans, sans-serif;*/
  /*  font-size: 12px;*/
  /*  padding: 0 4px 0 4px;*/
  /*}*/
  
  /*input:focus {*/
  /*  border: 2px solid #5292f7;*/
  /*  outline: none;*/
  /*}*/
  

/* Footer Section */
.social-icon {
    margin: 20px 10px;
}

/*input {*/
/*    border:none;*/
/*    width:100%;*/
/*    height:100%;*/
/*    font-family: Verdana, Helvetica, Arial, FreeSans, sans-serif;*/
/*    font-size:12px;*/
/*    padding: 0 4px 0 4px;*/
/*  }*/
  
  /*input:focus { */
  /*  border:2px solid #5292F7;*/
  /*  outline: none;*/
  /*}*/

/* cameras css style */
.cam-row {
  border-style:solid;
  border-color: black;
  border-width:15px;
  padding-top:35px;
  padding-bottom:35px;
  padding-right:50px;
  padding-left:50px;
  margin-top:25px;
  margin-bottom:25px;
  margin-right:50px;
  margin-left:50px;
}

.cam-row-cell {
  background-color: #73bf44;
  display: table-cell;
  border-style: solid;
  border-width:15px;
  padding-left: 30px;
  padding-right: 30px;
  padding-top: 30px;
  padding-bottom: 30px;
  font-weight:5000;
  font-size:200%;
}

/* Popup Form */
#popup-form-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

#popup-form-container form {
  background-color: #ffffff;
  padding: 20px;
  border-radius: 5px;
  width: 80%;
  max-width: 500px;
  margin: 30px auto;
}

/************************
Tiltle Spotlight
************************/
/*
.spotlight {
  position: relative;
  display: inline-block;
  font-size: 48px; /* Adjust as needed
  font-weight: bold;
  color: #c5c5c5; /* Text color
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.8) 50%, rgba(255, 255, 255, 0) 100%);
  background-size: 200% 100%;
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent; /* Hide the default text color
  animation: spotlight 10s infinite;
}
*/

/* Registration & Login */
.container-main-header {
  padding: 10px;
  width: 45%;
  margin: 40px auto;  /* Center the form horizontally */
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 8px;
  background-color: #73bf44;
  color: #fff;
}

.loyalty-buttons {
  display: flex;
  gap: 25px; /* Adds space between the buttons */
  justify-content: center; /* Centers buttons horizontally */
  margin-top: 20px; /* Adds spacing above the buttons */
}

.container-header-center-card {
  width: 45%;
  margin: 40px auto;  /* Center the form horizontally */
  padding: 0px;
  border: 1px solid #ccc;
  border-radius: 8px;
  background-color: #73bf44;
  color: #fff;
}

.container-body-center-card {
  width: 45%;
  margin: 40px auto;  /* Center the form horizontally */
  padding: 0px;
  border: 1px solid #ccc;
  border-radius: 8px;
  background-color: #73bf44;
  color: #fff;
}

/* Style each form-group to align label and input verticaly */
.form-group {
  display: flex;
  width: 80%;
  align-items: center; /* Center align items vertically */
  margin-bottom: 5px; /* Space between form groups (adjusted) */
  margin-top: 5px; /* Space between form groups (adjusted) */
}

/* Align labels to the left */
.form-group label {
  display: flex;
  width: 40%;          /* Adjust as needed for label width */
  margin-right: 10px;  /* Add spacing between label and input */
  text-align: left;    /* Align text to the left */
  margin-left: 10px;
}

/* Style input fields */
.form-group input select {
  width: 60%;          /* Fill remaining space for input */
  padding: 8px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.required-header {
  margin: 10px;
  font-weight: 500;
}

.required {
  color: red;
  font-weight: 200;
  margin-left: 5px;
  margin-right: 5px;
}

.dropdown-icon-container {
  display: flex;
  align-items: center; /* Vertically aligns the label and dropdown */
  gap: 10px; /* Space between the label and dropdown */
}

.dropdown-label {
  margin: 0; /* Remove default margin */
  font-weight: bold; /* Optional styling for the label */
}

.dropdown-wrapper {
  position: relative;
  flex-grow: 1; /* Ensures the dropdown takes available space */
}

select.form-control {
  width: 100%; /* Full width for the dropdown */
  padding-right: 30px; /* Space for the icon */
}

.dropdown-icon {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  color: #333; /* Customize color */
  font-size: 16px;
}

.pass-icon{
  position: absolute; 
  right: 10px; 
  top: 50%; 
  transform: translateY(-50%); 
  cursor: pointer;
  color:#686363;
}

/* Buttons */
/* App Download Buttons*/
.container-app-btn {
  display: flex;
  gap: 15px; /* Adds 15px of space between buttons */
  justify-content: flex-start; /* Aligns buttons to the left */
}

.apple {
  border: 2px solid #333; /* White border */
  color: #333; /* White text color */
}
.android {
  border: 2px solid #fff; /* White border */
  color: #fff; /* White text color */
}

.apple:hover {
  background-color: #333; /* Dark background on hover */
  color: white; /* Keep text white on hover */
  border-color: #333; /* Darken border on hover */
}

.android:hover {
  background-color: #fff; /* Dark background on hover */
  color: #333; /* Keep text white on hover */
  border-color: #fff; /* Darken border on hover */
}

.app-btn {
  background-color: #599336;
  border-color: #FFF;
  border-radius: 6px;
}

.btn {
  background-color: #73bf44;
}

.btn:hover {
  background-color: #599336;
  border-color: #599336;
}

/* Terms Inline container (for checkbox and label) */
.terms-inline {
    display: flex;
    flex-direction: column;   /* Align items vertically */
    justify-content: center;  /* Center vertically */
    align-items: center;      /* Center horizontally */
    text-align: center;       /* Align text to the center */
    gap: 8px;                 /* Space between label and checkbox */
}

/* Styling for the privacy policy label */
.terms-inline label {
    font-size: 1rem;
    color: #333;
    margin-bottom: 5px;       /* Space between label and checkbox */
}

/* Styling for the privacy policy link */
.terms-inline a {
    color: #007bff;
    text-decoration: none;
    font-weight: 500;
}

.terms-inline a:hover {
    text-decoration: underline;
}

/* Ensure checkbox styling is good */
.terms-inline input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
    margin-top: 5px;  /* Optional: space between label and checkbox */
}

/* Optional: Style error message */
.text-danger {
    /* font-size: 0.9rem; */
    color: red;
    margin-top: 5px;
}

.align-items-center {
  margin-bottom: 10px;
}

/*********************
All Warning and alerts text format and flash
*********************/
.warning-text {
  color: red;
  display: none;
  margin-top: 5px;
}

.alert-error{
  color: #fff;
  background-color: #73bf44;
  width: 45%;  /* same size as the block */
  margin: 10px auto;  /* Center the form horizontally */
  padding: 20px;
  border: 1px solid #ccc;
  border-radius: 8px;
}

.info-messages {
  width: 45%;
  margin: 40px auto;  /* Center the form horizontally */
  padding: 0px;
  color: #fff;
}

.login-btn {
  margin-bottom: 10px;
}

.modal-content {
  padding: 20px;
}

.modal-footer {
  display: flex;
  justify-content: flex-end;
}

.btn-close {
  margin-left: auto;
}

.userRow {
	cursor: pointer;
}

/* MSN modal images */
.msn-list-container {
    max-height: 200px; /* Adjust height as needed */
    overflow-y: auto;
    border: 1px solid #ccc;
    padding: 5px;
}

/************************* MSN Modal ******************************/
/* Row data border */
.row-border {
  background-color: #73bf44;
  border: 4px solid rgb(255, 255, 255);
  border-radius:10px;
  padding: 5px;
}
/* Change modal background color */
.modal-content {
  /* background-image: url('/static/site_images/adminview_background.jpeg'); Replace with your image URL */
  background-size: cover; /* This makes sure the image covers the entire modal */
  background-position: center; /* Centers the background image */
  background-repeat: no-repeat; /* Prevents repeating the image */
  /* background-color: rgba(0, 0, 0, 0.1); Optionally, add a slight transparent overlay */
  /* background-color: #73bf44; */
  background-color: #ffffff;
  border: 4px solid rgb(0, 0, 0);
  border-radius:20px;
}

.modal-content::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.1); /* Adjust opacity here, 0.5 is 50% transparent */
  pointer-events: none;  /* Allows interaction with other elements */
}

/*  Input field highlighting */
.cell-red {
  background-color: #fc0000 !important;
  font-weight: bold; /* optional, makes it pop */
  border-color: #000000;
  border: 2px solid !important;
}

.cell-green {
  background-color: #b2d89a !important; 
  font-weight: bold; /* optional, makes it pop */
  border: 2px solid !important;
  border-color: #050505;
}

.custom-btn-std {
  display: inline-block;
  padding: 0.5rem 1rem;           
  font-size: 1.25rem;             
  font-weight: 500;
  line-height: 1.5;
  text-align: center;
  text-decoration: none;
  color: #fff;
  background-color: #73bf44;      
  border: 1px solid #198754;
  border-radius: 0.375rem;        /* rounded corners */
  transition: background-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  cursor: pointer;
}

.custom-btn-std:hover {
  background-color: transparent;
  color: #73bf44;
  border-color: #73bf44;
  box-shadow: 0 0 0 0.25rem rgba(25, 135, 84, 0.5);
}

.custom-btn-active {
  display: inline-block;
  padding: 0.5rem 1rem;           
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.5;
  text-align: center;
  text-decoration: none;
  color: #73bf44;
  background-color: transparent;
  transition: background-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  cursor: pointer;
}

.custom-btn-active:hover {
  background-color: transparent;
  color: #73bf44;
  border-color: #73bf44;
  box-shadow: 0 0 0 0.25rem rgba(25, 135, 84, 0.5);
}

/* Status output in modal flash */
@keyframes flash {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.flash {
  animation: flash 1s infinite;
}

/* text colors */
.textWhite {
  color: #ffffff !important;
}

.textBlack {
  color: #000000 !important;
}

/* modal x close buttons */
.btn-close {
  cursor: pointer;
}

/*********************** Redeem rewards profile modal ***************/
/* modal width class .modal-custom */
.custom-modal-width {
  max-width: 80%; /* Adjust to 90% of the screen width */
  width: 80%;
}

.r-modal-header {
  background-color: #73bf44; 
  color: white;
}

/*********************** Removal note zoom **************************/
.image-container {
    position: relative;
    overflow: hidden;
    display: inline-block;
    max-width: 100%;
    border: 2px solid #ddd;
    border-radius: 10px;
    cursor: zoom-in; /* Default cursor */
    background: white;
}

.zoomable {
    transition: transform 0.2s ease-in-out;
    max-height: 500px;
    transform-origin: center center;
    border-radius: 5px;
    box-shadow: 0px 4px 10px rgba(234, 28, 28, 0.1);
}

/********************  strikethrough for moderators table *********************************/
.inactive-row td {
	text-decoration: line-through;
	color: red;
	opacity: 0.6;
}

.sort-icon th {
  size: 5px;
}

/********************* table pointers *********************************/
th {
	cursor: pointer;
}
.sort-icon {
	margin-left: 5px;
}

/*******************************************************************************************
Mobile/table/small screen sizes
********************************************************************************************/
/****************************** Medium screens (tablets) ***********************************/
@media (max-width: 768px) {
  
}

/***************************** Small screens (phones) ****************************************/
@media (max-width: 576px) {
  .big-heading {
      font-size: 2rem; /* Even smaller for phones */
      line-height: 1.3; /* Adjust line-height for better readability */
  }

  .container-app-btn {
    gap: 10px; /* Reduces space between buttons for tablets */
    justify-content: center; /* Centers buttons horizontally on smaller screens */
  }

  .container-main-header {
    width: 100%;
  }

  .container-body-center-card {
    width: 100%; /* Increase width slightly on larger screens */
    padding: 25px; /* Add more padding for spacious design */
  }

  .form-group {
    display: flex;
    flex-direction: column; /* Stack label and input vertically */
    width: 100%; /* Full width for smaller screens */
    margin: 1px 0; /* Spacing between form groups */
  }

  /* Labels for small screens */
  .form-group label {
    width: 100%; /* Full width to stack label and input */
    margin: 20px 0 5px 0; /* Spacing below the label */
    text-align: left; /* Align text to the left */
  }

  /* Input fields */
  .form-group input,
  .form-group select {
    width: 100%; /* Full width for input/select */
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 4px;
  }

  .form-group .dropdown-wrapper {
    width: 100%;
  }

  .pass-icon{
    position: absolute; 
    right: 10px; 
    top: 70%; 
    transform: translateY(-50%); 
    cursor: pointer;
    color:#686363;
  }

}

/*************************** Extra small screens (very small phones) **************************/
@media (max-width: 400px) {
  
}