body {
  font-family: arial, sans-serif;
  background: linear-gradient(to bottom, #080B48 30%, #f0f0f0 70%);
  height: 100vh;
  display: flex;
  overflow: hidden;
  flex-direction: column;
}

.modalContainer {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 20px;
  background: #fff;
  z-index: 2;
}

.modalContainerLg {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 1000px;           /* Increase width */
  max-height: 90vh;       /* Prevent overflowing viewport */
  overflow-y: auto;       /* Enable scroll if content is tall */
  padding: 30px;          /* More inner space */
  background: #fff;
  box-shadow: 0 0 15px rgba(0,0,0,0.3); /* Optional for depth */
  z-index: 2;
  border-radius: 8px;     /* Optional rounded corners */
}

.form-field {
  margin: 7px auto;
  border: 1px solid #ccc;
  padding: 5px;
}

.scrollable-content {
  overflow-y: auto;
  flex: 1;
  overflow-x: hidden;
  max-height: 300px;
  word-wrap: break-word;
}

.text-button {
  cursor: pointer;
  text-decoration: underline;
  color: #f7b918;
}

.text-button:hover {
  color:#e0a800;
}

.remove-button {
  cursor: pointer;
  color: red;
}

.button-default {
  background-color: #080B48;
  color: #ffffff;
  border: none;
  padding: 8px 16px;
  border-radius: 20px;
  cursor: pointer;
}

.button-default:hover {
  background-color:	#f7b918;
}

.button-disabled {
    border: none;
    padding: 8px 16px;
    border-radius: 20px;
    opacity: 0.5;
    cursor: not-allowed;
}

.button-active {
    background-color: #f7b918;
    color: white;
    padding: 6px 12px;
    border-radius: 4px;
}

#button-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
}

#overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

#main {
  border-radius: 10px;
  background-color: white;
  margin: auto 20px;
}

#tracking-table {
  overflow-x: auto;
}

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

#tracking-table td,
#tracking-table th {
  border: none;
  white-space: nowrap;
  text-align: left;
  padding: 8px;
  vertical-align: middle;
}

#tracking-table th {
  border-top: 1px solid #dddddd;
  border-bottom: 1px solid #dddddd;
}

#tracking-table td {
  border-bottom: 1px solid #dddddd;
  max-width: 120px;
  white-space: nowrap;
  overflow: hidden;
  vertical-align: middle;
}

#tracking-table tr:hover {
  background-color: #f5f5f5;
}

#tracking-table td:hover {
  overflow-x: auto;
}

#tracking-table td::-webkit-scrollbar {
  height: 5px;
}

#tracking-table td::-webkit-scrollbar-thumb {
  background-color: #888;
}

#tracking-table td::-webkit-scrollbar-track {
  background-color: #f1f1f1;
}
