* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }



/* START */
 /* =================================================================================================================== */
 /* ToolTip */
 /* Added by RB 02-04-2025  */
 /* These classes are used for the ToolTip. You can chenge these values to get the required design */
 /* Target Element Styling: This section's values affect the item to which the tooltip is applied. */

 /* Basic Tooltip Styling */
  .rb-custom-tooltip {
    position: absolute;
    /* background: #333; */
    background: #fff;
    /* color: #fff; */
    color: #333;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 14px;
    max-width: 200px; /* Maximum width of the tooltip */
    white-space: normal; /* Allow text wrapping */
    word-wrap: break-word; /* Ensure long words wrap */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

/* Tooltip Arrow */
.rb-custom-tooltip::after {
    content: "";
    position: absolute;
    top: -16px; /* Change to position the arrow above the tooltip */
    left: 50%;
    transform: translateX(-50%);
    border-width: 8px;
    border-style: solid;
    border-color: transparent transparent #333 transparent; /* Adjusted for downward arrow */
}

/* Target Element Styling */
/* .rb-tooltip-target {
    display: inline-block;
    padding: 10px 20px;
    margin: 20px;
    background: #007BFF;
    color: white;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s;
}

.rb-tooltip-target:hover {
    background: #0056b3;
} */

/* ============================================================================================================================ */
/* END */



/* START */
/* =========================================================================================================================== */
/* Popover */
/* Added by RB 02-04-2025  */
/* These css classes are used for the popover */
/* Custom popover styles */
.popover {
    font-family: 'Myriad Pro Regular', sans-serif;
    font-size: 12px;  /* Change font size */
    color: black;
    
}

.popover .popover-title {
     font-weight: 600;
    background-color: #f7f7f7;
    color: black;
    font-size: 12px; /* Header font size */
}

.popover .popover-content {
    font-size: 11px; /* Body font size */
    max-height: 300px;  /* Limit popover height */
    overflow-y: auto;   /* Enable vertical scrolling */
    padding: 10px;      /* Optional: padding for better appearance */
}

/* ========================================================================================================================== */
/* END */





/* START */
/* ============================================================================================================================ */
/* SweetAlert2 Delete confirmation box */
/* Added by RB 02-04-2025  */
/* This contains all the CSS styles for the delete confirmation box. The CSS has been set up to comply with the company theme. */
/* Custom SweetAlert2 styles */
.swal2-title {
    font-size: 12px !important;     /* Change the title font size */
    font-family: 'Myriad Pro Regular', sans-serif !important;  /* Custom font */
}

.swal2-html-container, .swal2-content {
    font-size: 12px !important;     /* Change content font size */
    font-family: 'Myriad Pro Regular', sans-serif !important;
}

.swal2-confirm, .swal2-cancel {
    font-size: 12px !important;     /* Button font size */
    font-family: 'Myriad Pro Regular', sans-serif !important;
    
}

.swal2-confirm 
{
    background-color: #ff8400 !important;
    border-radius: 5px !important;
    border:none !important;
    box-shadow: none !important;
}

/* Remove all styles for the cancel button */
.swal2-cancel {
    background: none !important; /* Remove background */
    color: inherit !important; /* Remove custom text color */
    border: none !important; /* Remove border */
    padding: 0 !important; /* Remove padding */
    box-shadow: none !important; /* Remove any shadow */
    text-decoration: none !important; /* Remove text decoration */
    color: #2196f3 !important;
    margin: 0 15px !important; /* Adjust the left and right margin to increase distance */
}

/* Underline cancel button text on hover */
.swal2-cancel:hover {
    text-decoration: underline !important; /* Add underline on hover */
}

.swal2-right-bottom
{
    justify-content: flex-end !important;   /* Align buttons to the right */
    padding-right: 1rem !important;    /* Optional: Adjust spacing */
    padding-bottom: 1rem !important;   /* Optional: Adjust spacing */
}


.swal2-custom-header {
    background-color: #47484C; /* Header background (blue example) */
    padding: 20px; /* Padding for the header */
    border-top-left-radius: 5px; /* Rounded top-left corners */
    border-top-right-radius: 5px; /*Rounded top-right corners */
  }
.swal2-custom-title
{
    color: #FFFFFF !important;
}

.swal2-custom-popup
{
    border: none !important;
}
  
/* =============================================================================================================================== */
/* END */



/*+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++DATE PICKER+++++++++++++++++++++++++++++++++++++++++++++++++++++*/

 .RBcircle-picker {
    display: flex;
    gap: 10px;
    align-items: center;
    /* height: 40px; */
}

.RBcircle {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #00A8E8;
    border-radius: 50%;
    color:black;
    /* font-size: 11px; */
    /* font-weight: bold; */
    cursor: pointer;
    transition: background-color 0.3s, color 0.3s, transform 0.2s;
}

.RBblue-background{
    background-color: #00A8E8;


}

.RBcircle:hover {
    transform: scale(1.1);
}

/*+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++END OF DATE PICKER+++++++++++++++++++++++++++++++++++++++++++++++++++++*/





/*************************************** Filling effect button **********************************************************/

.t2liquid-btn {
  position: relative;
  height: 35px;
  padding: 0 15px;
  font-family: 'Myriad Pro Regular', sans-serif !important;/* Fallback added */
  font-size: 13px;
  font-weight: 400;
  color: #2c3e50;
  background: transparent;
  border: 1px solid #2c3e50;
  border-radius: 4px;
  cursor: pointer;
  overflow: hidden;
  transition: color 0.3s ease, border-color 0.3s ease, transform 0.1s ease, box-shadow 0.1s ease;
  z-index: 1;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2); /* Default shadow for depth */
}

.t2liquid-btn:hover {
  color: #ffffff;
  border-color: #ff8400; /* Matches base fill color */
}

.t2liquid-btn:active {
  transform: translateY(2px); /* Slight downward shift on click */
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.3); /* Tighter shadow for pressed look */
}

.t2btn-text {
  position: relative;
  z-index: 2;
}

.t2liquid {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: #ff8400; /* Base fill color */
  transition: top 0.5s cubic-bezier(0.3, 0.7, 0.4, 1), background 0.3s ease;
  z-index: 1;
  overflow: hidden;
}

.t2liquid-btn:hover .t2liquid {
  top: 0;
  background: #ff8400; /* Hover color */
}

/* Wobbly Wave Effect */
.t2liquid::before {
  content: "";
  position: absolute;
  top: -20px;
  left: 0;
  width: 200%;
  height: 40px;
  background: inherit; /* Inherits #ff8400 or #d87811 */
  animation: 
    wave-flow 3s linear infinite,
    wave-wobble 0.8s ease-in-out infinite alternate;
  border-radius: 42% 46% 38% 44%;
}

@keyframes wave-flow {
  0% { transform: translateX(0) scaleY(1.1); }
  50% { transform: translateX(-50%) scaleY(1.3); }
  100% { transform: translateX(-100%) scaleY(1.1); }
}

@keyframes wave-wobble {
  0% { transform: translateX(0) scaleY(1.1) rotate(-0.5deg); }
  100% { transform: translateX(0) scaleY(1.2) rotate(0.5deg); }
}

/* ####################### End of Testing animated button ####################### */



