body {
    background-color: #3AAF !important; /* Light gray background */
    font-family: 'Inter', sans-serif;
}

table {
  width: 100%;
  border-collapse: collapse;
}

th, td {
  border: 1px solid #ddd;
  padding: 8px;
  vertical-align: middle; /* Ensure the text and button are vertically aligned */
  min-width: 270px;
}

thead {
  background-color: #f4f4f4;
  text-align: center;
}

/* Wrapper for enabling horizontal scrolling */
.table-wrapper {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch; /* for smooth scrolling on iOS */
}

/* Optional: Add some styling for the table */
table {
  min-width: 700px;  /* Adjust to the minimum width you'd like */
}

/* Flexbox style for td to align text and button in one line */
td {
  display: flex;
  justify-content: space-between; /* Add space between text and button */
  align-items: center; /* Vertically center the content */
  padding: 10px;
  text-align: center;
  font-weight: 600;
  /*background-color: #3AAF !important;
  color: white !important;*/
}

.form-control {
    max-width: 190px !important;
}

td input {
  height: 100%; /* Make input height match td height */
  padding: 6px 12px; /* Add some padding for the input field */
  font-size: 14px; /* Adjust font size to be consistent with td */
  border: none !important;
  border-radius: 4px;
  box-sizing: border-box; /* Ensure padding is included in the element's height */
}

td input:hover {
  border-color: none !important; /* Change border color to green on hover */
}

td input:focus {
  border-color: none !important; /* Change to a darker green when the input is focused */
  outline: none !important; /* Remove the default outline to only show the custom border */
}

td button {
  padding: 6px 12px;
  background: linear-gradient(45deg, #3AAF, #2B7A77) !important; /* Gradient from light green to darker green */
  color: white;
  border: none !important;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.5s ease, transform 0.3s ease; /* Smooth transition on hover */
}

td button:hover {
  background: linear-gradient(45deg, #2B7A77, #3AAF); /* Darker green gradient on hover */
  transform: scale(1.1);
}

/* Optional: Style for table headers to make them more distinct */
th {
  font-weight: bold;
  padding: 10px;
  text-align: center;
  background-color: #2B7A77 !important;
  color: white !important;
  font-weight: 700 !important;
}

span {
  display: inline-block;
  margin-right: 10px; /* Space between the text and the button */
}

tr {
  display: flex;
}

h2 {
    font-weight: 700 !important;
    color: white !important;
}

p {
    color: white !important;
}

.btn .btn-primary {
    background: linear-gradient(45deg, #293274, #814cb1) !important;
    color: white !important;
    border: none !important;
}

.fixed-footer {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%; /* Make it span the entire width */
  background-color: #3AAF; /* Footer background color */
  color: white; /* Text color */
  text-align: center; /* Center the text */
  padding: 10px 0; /* Add some padding for height */
  font-size: 12px; /* Adjust font size as needed */
  z-index: 1000; /* Ensure it stays on top of other elements */
}

.table-bordered {
    border:1px solid #2B7A77 !important;
}

a {
    color: white !important;
    text-decoration: none !important;
    font-weight: 700 !important;
}

@media (min-width: 1400px) {
    .container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
        max-width: 1420px !important;
    }
}
