.flex-container {
  display: flex;
  font-family: Consolas, Arial, sans-serif;
}

.flex-container > div {
  padding: 1rem;
}

.flex-auto {
  flex: auto;
  border: 1px solid #f00;
}

.flex-initial {
  border: 1px solid #000;
}

.table-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  /* Adjust this property to control the horizontal alignment */
  align-items: flex-start;
  /* Adjust this property to control the vertical alignment */
  gap: 10px;
  /* Adjust this property to control the space between the tables */
}

.table-wrapper {
  flex-basis: calc(33.33% - 10px);
  /* Adjust this property to control the width of each table-wrapping div */
  box-sizing: border-box;
}

table {
  width: 100%;
  border-collapse: collapse;
}

/* Additional table styling if needed */
table,
th,
td {
  border: 1px solid #ccc;
  padding: 8px;
  text-align: left;
}

.footer {
  position: fixed;
  bottom: 0;
  width: 100%;
  height: 50px;
  background-color: #f5f5f5;
  text-align: center;
  padding-top: 50px;
}

body {
  display: block;
  flex-direction: column;
  min-height: 100vh;
  margin: 0;
}

.content-wrapper {
  flex: 1;
  padding-bottom: 150px;
  /* This allows the content wrapper to take up all the available space pushing the footer down */
}

.sticky-footer {
  padding-top: 50px;
  background-color: #333;
  color: #fff;
  padding: 20px;
  text-align: center;
}

.container {
  width: 100%;
  min-height: 50px;
  border: 1px solid black;
  float: left;
  max-height: 250px;
  overflow: scroll;
}

.draggable-item {
  width: 100px;
  min-height: 25px;
  background-color: #e9e9e9;
  margin: 5px;
  padding: 5px;
  cursor: pointer;
}
.file_container {
  width: 100%;
  min-height: 50px;
  border: 1px solid black;
  max-height: 250px;
  border-radius: 25px;
  padding-left: 5px;
  padding-right: 15px;
}

.green_button {
  background-color: #4caf50;
  border: none;
  color: white;
  padding: 15px 32px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  margin: 4px 2px;
  cursor: pointer;
}
.red_button {
  background-color: #f44336;
  border: none;
  color: white;
  padding: 15px 32px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  margin: 4px 2px;
  cursor: pointer;
}
.blue_button {
  background-color: #008cba;
  border: none;
  color: white;
  padding: 15px 32px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  margin: 4px 2px;
  cursor: pointer;
}
.white_button {
  background-color: #ffffff;
  border: none;
  color: black;
  padding: 15px 32px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  margin: 4px 2px;
  cursor: pointer;
}
.white_button .ouline {
  border: 1px solid black;
}
.no_hover:hover {
  background-color: #ffffff;
}
.no_click {
  pointer-events: none;
}
.pull-right {
  float: right;
}

#sub_category {
  display: none;
}

.set_form_width {
  width: 100%;
  min-width: 800px;
}

.color-sample {
  display: inline-block;
  width: 15px;
  height: 15px;
  margin-left: 10px;
  border: 1px solid #000;
}

.select2-container--default .select2-results__option i,
.select2-container--default .select2-selection__rendered i {
  color: #000;
  /* Change to desired icon color */
}

/* Change background color of the title bar for the Delete File dialog box */
.ui-dialog .ui-dialog-titlebar {
  background-color: #f44336;
}

.ui-dialog .ui-dialog-title {
  color: #ffffff; /* Change to a color that stands out against the background */
}

.ui-dialog .ui-dialog-content {
  color: black; /* Change to a color that stands out against the background */
}

/* Change background color of confirm button */
.ui-button.ui-corner-all.ui-widget:first-child {
  background-color: #4caf50; /* Change to your desired color */
  color: #ffffff; /* Change to your desired text color */
}

/* Change background color of cancel button */
.ui-button.ui-corner-all.ui-widget:last-child {
  background-color: #f44336; /* Change to your desired color */
  color: #ffffff; /* Change to your desired text color */
}

.hidden{
  display: none;

}

/*
/* Change styles for the close button */
/*.ui-button-icon.ui-icon.ui-icon-closethick {
/*  color: black;
/*  border-style: hidden;
/*}

/* Change styles for the close button with !important */
/*.ui-dialog-titlebar-close {
/*  /* Your styles here */
/*  color: black !important;
/*  border-style: hidden;
/*}



