@font-face {
  font-family: 'KonectaRegular';
  src: url('fonts/Poppins-Regular.ttf') format('truetype');
}

body,
html {
  font-family: 'KonectaRegular', sans-serif;
  margin: 0;
  font-size: 14px;
  color: #111111;
  background-color: #F2F0EB;
  padding: 20px;
  line-height: 1.6;
}

h1 {
  font-weight: bold;
  font-size: 24px;
  color: #2800C8;
  margin-bottom: 10px;
}

h2 {
  font-size: 18px;
  color: #0F0F72;
}

#dropdown-container {
  margin-bottom: 20px;
  width: 100%;
}

#dropdown-container select {
  margin: 5px 0;
  padding: 10px;
  background-color: #A6B7FF;
  border: 1px solid #2800C8;
  border-radius: 6px;
  width: 100%;
  color: #111111;
  font-weight: bold;
}

#content-container {
  margin-top: 20px;
  border-top: 2px solid #2800C8;
  padding-top: 20px;
  width: 100%;
}

#content-container div {
  background-color: #FFFFFF;
  border: 1px solid #A6B7FF;
  border-radius: 8px;
  padding: 15px;
  margin-bottom: 10px;
}

table {
  font-family: 'KonectaRegular', sans-serif;
  font-size: 14px;
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 0 8px rgba(15, 15, 114, 0.1);
}

th {
  background-color: #0F0F72;
  color: #FFFFFF;
  padding: 10px;
  text-align: left;
}

td {
  background-color: #FFFFFF;
  border-top: 1px solid #A6B7FF;
  padding: 10px;
  color: #111111;
}

tbody td:first-child {
  text-align: right;
  font-weight: bold;
  color: #0F0F72;
}

td select {
  width: 100%;
  box-sizing: border-box;
  padding: 8px;
  font-size: 14px;
  border: 1px solid #A6B7FF;
  border-radius: 4px;
  background-color: #A6B7FF;
  color: #111111;
}

td input[type="number"] {
  width: 100%;
  box-sizing: border-box;
  padding: 8px;
  font-size: 14px;
  border: 1px solid #A6B7FF;
  border-radius: 4px;
  background-color: #FFFCCF;
  /* Light yellow for enabled inputs */
  color: #111111;
}

td input[type="text"] {
  width: 100%;
  box-sizing: border-box;
  padding: 8px;
  font-size: 14px;
  border: 1px solid #A6B7FF;
  border-radius: 4px;
  background-color: #FFFCCF;
  /* Light yellow for enabled inputs */
  color: #111111;
}

input[disabled],
input[type="text"]:disabled,
select[disabled],
td input[disabled][type="number"] {
  background-color: #F2F0EB;
  color: #666666;
  opacity: 0.7;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

button {
  font-family: 'KonectaRegular', sans-serif;
  font-size: 14px;
  padding: 10px 16px;
  color: #FFFFFF;
  background-color: #2800C8;
  border: none;
  border-radius: 6px;
  margin: 10px 0;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

button:hover {
  background-color: #0F0F72;
}

.amount-container {
  text-align: right;
  margin-top: 10px;
  font-weight: bold;
  color: #0F0F72;
}

.container {
  display: flex;
  gap: 20px;
}

.container-vertical {
  position: relative;
  top: 10px;
  right: 10px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

select {
  background-color: #A6B7FF;
  border: 1px solid #2800C8;
  color: #111111;
  border-radius: 4px;
  padding: 8px;
}

input[type="radio"] {
  width: 30px;
  height: 30px;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url('./images/radio-button-unselect.png');
  background-size: cover;
  background-repeat: no-repeat;
  border: none;
  cursor: pointer;
}

input[type="radio"]:hover {
  background-image: url('./images/radio-button-hover.png');
}

input[type="radio"]:checked {
  background-image: url('./images/radio-button-select.png');
}

#content-container div {
  background-color: #FFFFFF;
  border: 1px solid #A6B7FF;
  border-radius: 8px;
  padding: 15px;
  margin-bottom: 10px;
}

.radio-heading {
  display: flex;
  align-items: center;
  gap: 10px;
}

.dimmed-label {
    color: #808080;
}