
.custom-select-wrapper {
  position: relative;
  display: inline-block;
  width: 100%; /* Adjust as needed */
}

.custom-select {
  width: 100%;
  padding: 12px 20px;
  font-size: 16px;
  color: #333;
  background-color: #f9f9f9;
  border: 1px solid #ccc;
  border-radius: 10px; /* The magic rounding factor */
  cursor: pointer;
  appearance: none; /* Removes default OS styling */
  -webkit-appearance: none;
  -moz-appearance: none;
  transition: all 0.3s ease;
}

/* Add an elegant focus effect */
.custom-select:focus {
  outline: none;
  border-color: #007bff;
  box-shadow: 0 0 8px rgba(0, 123, 255, 0.2);
}

/* Custom Dropdown Arrow */
.select-arrow {
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  pointer-events: none; /* Allows clicks to pass through to the select */
  color: #666;
}

tr:hover {
background-color: #edecea; /* Change this to your preferred hover color */
}

a {
  font-size: 14px;
  color: #ffffff;
  font-weight: 100;
  line-height: 25px;
}
a:hover { color: cyan; text-decoration: none}
.lnkapp       {  font-size: 14px; color: #2C5C94; text-decoration: none; font-weight: bold}
.lnkapp:hover {  font-size: 14px; color: #BC8F8F; text-decoration: none; font-weight: bold}