body{
    background-color: #fff !important;
}
#wrapper{
    box-shadow: none !important;
    max-width: 1400px !important;
}
.navbar-custom{
    max-width: 1400px !important;
    box-shadow: none !important;
    border-bottom: 1px solid #dee2e6;
}
.logo-box{
    background-color: #f9f9f9 !important;
    border-bottom: 1px solid #dee2e6;
    border-right: 1px solid #dee2e6;
}
.left-side-menu{
    background-color: #f9f9f9 !important;
    box-shadow: none !important;
    border-right: 1px solid #dee2e6;
}
#sidebar-menu .menuitem-active .active{
    background-color: #eee !important;
    color: #000 !important;
}
#sidebar-menu > ul > li > a:hover{
    background-color: #eee !important;
    color: #000 !important;
}
.content{
    border: 1px solid #dee2e6;
    margin-top: 15px;
}
.brand-image{
    height: 25px;
    width: 25px;
}
#message {
    display:none;
    background: #f1f1f1;
    color: #000;
    position: relative;
    padding: 20px;
    margin-top: 10px;
  }
#message p{
    margin-bottom: 0px;
}
/* Add a green text color and a checkmark when the requirements are right */
.valid {
    color: green;
  }
  
  /* Add a red text color and an "x" icon when the requirements are wrong */
  .invalid {
    color: red;
  }
  .disable-div {
    pointer-events: none;
    opacity: 0.3;
  }
/* The snackbar - position it at the bottom and in the middle of the screen */
#snackbar {
    visibility: hidden; /* Hidden by default. Visible on click */
    min-width: 250px; /* Set a default minimum width */
    margin-left: -125px; /* Divide value of min-width by 2 */
    background-color: #333; /* Black background color */
    color: #fff; /* White text color */
    text-align: center; /* Centered text */
    border-radius: 2px; /* Rounded borders */
    padding: 16px; /* Padding */
    position: fixed; /* Sit on top of the screen */
    z-index: 1; /* Add a z-index if needed */
    left: 50%; /* Center the snackbar */
    bottom: 30px; /* 30px from the bottom */
  }
  
  /* Show the snackbar when clicking on a button (class added with JavaScript) */
  #snackbar.show {
    visibility: visible; /* Show the snackbar */
    /* Add animation: Take 0.5 seconds to fade in and out the snackbar.
    However, delay the fade out process for 2.5 seconds */
    -webkit-animation: fadein 0.5s, fadeout 0.5s 2.5s;
    animation: fadein 0.5s, fadeout 0.5s 2.5s;
  }
  
  .overlay {
    position: absolute; /* Positioned relative to #domain_option */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7); /* Dark background with opacity */
    color: white;
    display: flex;
    justify-content: center; /* Center horizontally */
    align-items: center; /* Center vertically */
    z-index: 10; /* Above the content within #domain_option */
    border-radius: .25rem; /* Optional: to match Bootstrap's card border-radius */
}
.page-title-back{
  font-size: 14px !important;
  font-weight: 700 !important;
}
.editable-field {
  display: flex;
  align-items: center;
  font-size: 1.8rem;
  font-weight: bold;
  color:#000
}
.editable-field input {
  display: none;
  font-size: 1.5rem;
  font-weight: bold;
}
.edit-icon {
  cursor: pointer;
  margin-left: 10px;
  font-size: 1.2rem;
  color: #000;
}
.swal2-modal .swal2-confirm {
  background-color: black !important;
  border-color: black !important;
}
.brand-logo {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
}
.brand-name {
  display: flex;
  align-items: center;
  gap: 10px;
}
.btable td, .table th {
  vertical-align: middle;
}
.withsearch {
  margin-top: -3px;
}
.campaign-container {
  max-width: 1000px;
  margin: auto;
  padding: 10px 0;
}
.campaign-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.campaign-title {
  font-size: 22px;
  font-weight: bold;
}
.campaign-subtitle {
  font-size: 20px;
  margin-top: 20px;
  color: #555;
  font-weight:bold;
}
.campaign-type-box {
  border: 2px solid #ddd;
  border-radius: 10px;
  padding: 20px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
}
.campaign-type-box:hover,
.campaign-type-box.active {
  border-color: black;
}
.campaign-type-box i {
  font-size: 40px;
  color: #333;
}
.campaign-type-box h4 {
  font-size: 20px;
  font-weight: bold;
  margin-top: 10px;
}
.campaign-type-box p {
  color: #666;
  font-size: 14px;
}
.campaign-type-box.selected {
  border: 2px solid black;
}
.campaign-textarea {
  width: 100%;
  height: 100px;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 5px;
}
.flowchart-container {
  background: url('../../assets/images/flow-bg.png');
  border-radius: 8px;
  padding: 20px;
  height: auto;
  overflow: auto;
  text-align: center;
  position: relative;
}
.flowchart {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}
.flowchart .node {
  background-color: white;
  border: 2px solid #ddd;
  padding: 15px;
  border-radius: 8px;
  margin: 10px;
  display: inline-block;
  text-align: center;
  width: 260px;
  position: relative;
  font-size: 14px;
  font-weight: bold;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
}
.flowchart .node i {
  margin-right: 8px;
}
.flowchart .line {
  width: 2px;
  background-color: #ddd;
  height: 30px;
  margin: auto;
}
.flowchart .horizontal-line {
  height: 2px;
  width: 100px;
  background-color: #ddd;
  margin: auto;
}
.flowchart-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 50px;
  position: relative;
  width: 100%;
}
.node.text-danger {
  color: red;
  border-color: red;
}
.curve-line {
  width: 60px;
  height: 50px;
  border-bottom: 2px solid #ddd;
  border-right: 2px solid #ddd;
  position: absolute;
  right: -30px;
  bottom: -15px;
}