nav {
    background-color: #333;
    overflow: hidden;
}
nav a {
    float: left;
    display: block;
    color: white;
    text-align: center;
    padding: 14px 20px;
    text-decoration: none;
}
nav a:hover {
    background-color: #ddd;
    color: black;
}

.logo-small {
    width: 100px; /* Adjust this value as needed */
}


#drop-zone {
    border: 2px dashed #ccc;
    border-radius: 20px;
    width: 200px;
    height: 50px;
    padding: 10px;
    text-align: center;
    font-family: Arial, sans-serif;
    margin: 20px;
}
#drop-zone:hover {
    background-color: #f9f9f9;
}
/* Basic styling for the div */
#clickable-div {
  width: 100px;
  height: 100px;
  background-color: #EEE; /* Light gray color */
  cursor: pointer; /* Change mouse cursor to signify it's clickable */
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  margin: 20px;
  border: 1px solid #000; /* Optional: adds a border */
}

.image-container {
    position: relative;
    top: 0;
    left: 0;
    width: 600px; /* Adjust as needed */
    height: 780px; /* Adjust as needed */
}
.offer-svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* opacity: 0.5; /* Adjust the opacity for translucency */ */
      border: 2px solid #333; /* Add a border */
      border-radius: 5px; /* Add rounded corners */
      box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2); /* Add a shadow */
}
.offer-image {

      width: 100%; /* Make the image fill the container */
      height: auto; /* Maintain aspect ratio */ 
      margin-bottom: 20px; 
  }




.container{
    display: flex;

}

.leftcolumn {   
    flex: 30% 0 0; /* Take up 25% of the width */

}

/* Right column */
.rightcolumn {
    flex: 0 0 70%; /* Take up 50% of the width */

}

.side-by-side {
    background-color: #f0f0f0;
    padding: 10px;
    z-index: 2;
    overflow-y: auto;
    height: 100%;
    width: 1fr;
    overflow: hidden;
}

.left{
    top: 80px;
    left: 20px;
    
}
.right{
    
}

.navigate-offer{

   display: inline;   
   width:100%;
}
.fixed-match-button, .use-guess-button {
    z-index: 1; /* Ensure button is above the fixed element */
}
.arrow-up-icon {
    transform: rotate(90deg);
}

.muted {
    color: #6c757d;
    /* margin-left: 5px; */
    text-decoration: none; /* Remove underline */
    font-style: italic;
}
.notmuted {
    color: #f9102b;
    /* margin-left: 5px; */
    text-decoration: none; /* Remove underline */
}
.lower-text{
    position: relative;
    top: 5px; /* Shift text down by 5 pixels */
}
.layout {
  display: grid;
  grid-template-columns: 1fr 20px 2fr;
  grid-gap: 8px;
  grid-auto-flow: row;
}
.child {
  background: orange;
  text-align: center;
  padding: 25px;

  display: flex;
  justify-content: space-between;
}
.last-row {
  grid-column: 1 / 3;
}
.child > span {
  height: 50px;
  background: darkred;
  flex: 0 1 30%;
}
.item-a {
  grid-column: 1 / span 1;
  grid-row: 1/last-row;
  /* background: #e45be6; */
  width: 100%;
  overflow: hidden;
}
.item-b {
  grid-column: 3 / span 1;
  /* background: #725be6; */
}
.aa{
      display:block;
      /* height: 50px; */
      width: 100%;
      /* background: #8a0000; */
      flex: 0 1 30%;
      white-space: normal;
      overflow-wrap: break-word; 
}
.bb{
      display:block;
      /* height: 50px; */
      width: 80%;
      background: #8a0000;
      flex: 0 1 30%;
      white-space: normal;
      overflow-wrap: break-word; 
}

.ai_guess_group{

      display:block;
      white-space: normal;
      overflow-wrap: break-word; 
    
}
.ui-autocomplete {
    z-index: 1000; /* Ensure dropdown appears above other elements */
    background-color: white; /* Set background color of the dropdown */
    border: 1px solid #ccc; /* Optional: add a border for better visibility */
}

.ui-autocomplete li {
    padding: 8px; /* Add some padding for better visibility */
    cursor: pointer; /* Change cursor to pointer for better UX */
}

.ui-autocomplete li:hover {
    background-color: #007bff; /* Highlight color when hovered */
    color: white; /* Text color when hovered */
}


.form-container {
    display: flex;              /* Use Flexbox for centering */
    flex-direction: column;     /* Stack form groups vertically */
    align-items: center;        /* Center form groups horizontally */
    justify-content: center;    /* Vertically center content (if needed) */
    width: 100%;                /* Ensure the container spans the full width */
    height: 100vh;              /* Optional: Center within the viewport */
}

.form-group {
    display: flex;              /* Use Flexbox for individual form groups */
    flex-direction: column;     /* Stack label and input vertically */
    align-items: flex-start;    /* Align label and input to the left */
    margin-bottom: 15px;        /* Space between form groups */
    width: 50%;                 /* Adjust width as needed */
}

.form-group label {
    font-weight: bold;          /* Bold text for the label */
    margin-bottom: 5px;         /* Space between label and input */
    text-align: left;           /* Ensure text is left-aligned */
    width: 100%;                /* Allow label to span the full width */
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;                /* Make inputs stretch to fill form-group width */
    padding: 10px;              /* Add padding for better appearance */
    box-sizing: border-box;     /* Include padding in element width */
    border: 1px solid #ccc;     /* Optional: Add a border */
    border-radius: 4px;         /* Optional: Round corners */
}
.button-group {
    display: inline-block;
}
.button-spacing {
    margin-right: 5px;
}

.logo {
    width: 50%;
    height: auto;
}
.custom-heading-spacing {
    margin-top: 20px;  /* 50px space above */
    margin-bottom: 20px; /* 30px space below */
}

.copy-email-btn {
    display: block; /* Makes the button behave like a block element */
    max-width: 100%; /* Limits the button width to the cell's width */
    white-space: nowrap; /* Prevents text wrapping inside the button */
    text-overflow: ellipsis; /* Adds "..." if the text is too long */
    overflow: hidden;
}

.bb-not-button {
    display: inline-block;
    padding: 0.25rem 0.5rem; /* Smaller padding for btn-sm */
    font-size: 0.875rem; /* Smaller font size for btn-sm */
    font-weight: 400;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    cursor: pointer;
    user-select: none;
    background-color: transparent; /* Outline buttons have no background */
    border: 1px solid #0d6efd; /* Primary color border */
    color: #0d6efd; /* Primary color text */
    border-radius: .25rem;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

/* btn-sm styling */
.bb-not-button.btn-sm {
    padding: 0.25rem 0.5rem; /* Smaller padding */
    font-size: 0.875rem; /* Smaller font size */
    border-radius: .25rem; /* Slightly smaller border-radius */
}

.bb-btn {
    display: inline-block;
    padding: 0.25rem 0.5rem; /* Smaller padding for btn-sm */
    font-size: 0.875rem; /* Smaller font size for btn-sm */
    font-weight: 400;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    cursor: pointer;
    user-select: none;
    background-color: transparent; /* Outline buttons have no background */
    border: 1px solid #0d6efd; /* Primary color border */
    color: #0d6efd; /* Primary color text */
    border-radius: 0.25rem;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.bb-btn:hover {
    background-color: #0d6efd; /* Primary color background on hover */
    color: #fff; /* White text on hover */
    border-color: #0d6efd; /* Match the background color */
}

.bb-btn:active {
    background-color: #084298; /* Darker primary on active state */
    border-color: #084298;
}

/* .bb-btn:focus {
    outline: 0;
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25); /* Bootstrap focus ring */
/*} 
*/

/* btn-sm styling */
.bb-btn.btn-sm {
    padding: 0.25rem 0.5rem; /* Smaller padding */
    font-size: 0.875rem; /* Smaller font size */
    border-radius: 0.2rem; /* Slightly smaller border-radius */
}
.bb-btn.btn-xsm {
    padding: 0.2rem 0.4rem; /* Smaller padding */
    font-size: 0.75rem; /* Even smaller font size (12px) */
    border-radius: 0.15rem; /* Smaller border radius */
    line-height: 1; /* Reduce line height for a more compact button */
}

