/* custom-styles.css */

.table-container {
    float: left;
    margin: 15px;
    padding: 5px;
    background-color: #3403a6;
    border: white 1px solid;
}

table {
    border-collapse: collapse;
    border: 1px solid #aaaaaa;
}

th, td {
    border: 1px solid #aaaaaa;
    padding: 5px;
    color: #ffffff;
}

body {
    color: white;
}

.nexus1 a {
    font-weight: bold;
    text-decoration: underline;
    color: #aaaaff;
}

.nexus1 a:hover {
    color: #ffffff;
}

.visibullet ul {
    list-style-type: disc;
    padding-left: 20px;
}

.visibullet li {
    margin-bottom: 8px;
}

.table-blue-bg {
    background-color: #ccccff; /* Pale blue background */
    color: black;
}

.table-blue-bg th,
.table-blue-bg td {
    background-color: #ccccff; /* Pale blue background for all table cells */
}

/* custom-styles.css */
.button {
    background-color: #4CAF50; /* Green */
    color: white;
    border: none;
    padding: 10px 20px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 4px 2px;
    cursor: pointer;
    border-radius: 8px;
}

.button:hover {
    background-color: #008000;
}
/*    background-color: #45a049; */

.bluebutton {
    background-color: #4C50AF; /* Blue */
    color: white;
    border: none;
    padding: 10px 20px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 4px 2px;
    cursor: pointer;
    border-radius: 8px;
}

.bluebutton:hover {
    background-color: #000080; /* Dark Blue */
}

/* custom-styles.css */
.table-blue-bg a.microsite-url {
    color: #00008B; /* Dark blue for prominence */
    font-weight: bold;
}

.table-blue-bg a.microsite-url:hover {
    color: #1F51FF; /* Blue color on mouseover */
}

.navbar {
    display: flex;
    justify-content: space-between; /* Adjusts alignment to have space between elements */
    padding: 1rem;
    background: transparent; /* Ensure background is transparent */
}

.navbar a.button,
.navbar button {
    background-color: #4CAF50; /* Green */
    color: white;
    border: none;
    padding: 10px 20px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 4px 2px;
    cursor: pointer;
    border-radius: 8px;
}

.navbar a.button:hover,
.navbar button:hover {
    background-color: #008000;
}

/* Add background color to all text boxes */
input[type="text"],
input[type="number"],
input[type="password"],
select,
textarea {
    background-color: #ccccff; /* Pale blue background */
    color: black; /* Black text */
}

.warnbox {
    background-color: red;
    color: white;
    border: 2px solid black;
    border-radius: 10px;
    padding: 10px;
    margin-bottom: 10px;
    text-align: center;
}

.warnbox a {
    color: white;
    text-decoration: none;
    display: block;
    width: 100%;
    height: 100%;
}

.switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 34px;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccf;
  transition: .4s;
}

.slider:before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  left: 4px;
  bottom: 4px;
  background-color: #4000aa;
  transition: .4s;
}

input:checked + .slider {
  /* background-color: #2196F3; */
  background-color: #4C50AF;
}

input:checked + .slider:before {
  transform: translateX(26px);
}

.slider.round {
  border-radius: 34px;
}

.slider.round:before {
  border-radius: 50%;
}

.midnightbox {
    border: 1px solid #ccccff;
    padding: 5px;
    /*background-color: #191970; /* Midnight Blue */
    background-color: rgb(25 10 78); /* Purple */
    color: white; /* Ensures text is readable on dark background */
}

