

/* Style for the input container */
input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.input-container {
  width: 100%;
  margin: 0 auto;
  padding: 20px;
  background-color: #f9f9f9;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Flexbox layout for the first row (Audit button and inputs) */
.input-row {
  display: flex;
  justify-content: flex-start;
  gap: 10px;
  margin-bottom: 15px;
}

.input-row button,
.input-row input {
  padding: 10px;
  font-size: 1em;
  border-radius: 5px;
  border: 1px solid #ccc;
}

.input-row button {
  background-color: #fe2c55;
  color: white;
  border: none;
  cursor: pointer;
  width: 150px;
}

.input-row input {
  max-width: 200px;
  flex: 1;
}

.input-row button:hover {
  background-color: #ff5d57;
}

.button-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    width: 100%;
  }
  
  .button-row .left-buttons {
    display: flex;
  }
  
  .button-row .right-buttons {
    display: flex;
    gap: 10px;
  }
  
  .button-row button {
    padding: 8px 10px;
    font-size: 14px;
    border: none;
    border-radius: 5px;
    cursor: pointer;

    flex: 1 1 6%; /* Each button takes up 10% of the container's width */
    box-sizing: border-box; /* Ensure padding and border are included in the width */
    margin: 5px; /* Optional: Add some margin between buttons */

    height: 50px;
    width: 100px;
    box-sizing: border-box; 
  }
  
  /* Preview button styles */
  .button-row .left-buttons button {
    background-color: #007bff;
    color: white;
    width: 100px;
    height: 35px;
    font-weight: bold;
    display: none; /* Hide initially */
  }
  
  .button-row .left-buttons button:hover {
    background-color: #0056b3;
  }
  
  /* Campaign buttons styles */
  .button-row .right-buttons button {
    background-color: #fe2c55;
    color: white;
  }
  
  .button-row .right-buttons button:hover {
    background-color: #ff5d57;
  }
  



