.body{
 max-width: 600px;
  background-color: #ADD8E6;
}

.success-message {
   text-shadow: 4px 4px 8px #FF0000;
  color: green;
}

.error-message{
  text-decoration-style: dashed;
  color: red;
  
}

.title{
text-align: center;
font-size: 30px;
color: #00008b;
font-weight: bold;
margin-bottom: 20px;
}

.titles{
text-align: center;
font-size: 24px;
color: #00008b;
margin-bottom: 20px;
}

.button{
  display: flex; 
  justify-content: center;
  background: linear-gradient(to right, #00008b, #00008b);
  color: white;
  padding: 12px 24px;
  border: none;
  border-radius: 30px;
  font-size: 12px;
  cursor: pointer;
  transition: transform 0.2s ease;
  margin-left: 40px;
}

.button:hover{
  transform: scale(1.05);
}

table {
  width: 100%;
  border-collapse: collapse;
}
tr:nth-child(even) {
  background-color: #f2f2f2;
}
tr:hover {
  background-color: #e0f7fa;
}
th {
  background-color: hwb(202 6% 13%);
  color: white;
  padding: 12px;
}
td {
  padding: 10px;
  text-align: center;
}


.input, .dropdown-content{
  margin-left: 10px;
}

.form-group{
  margin-bottom: 10px;
}

label {
font-size: 14px;
font-weight: bold;
color: #00008b;
}

.label-red {
font-size: 14px;
font-weight: bold;
color: red;
}

.label-green {
font-size: 14px;
font-weight: bold;
color: green;
}

.button-link {
  display: inline-block;
  padding: 2px 10px;
  background-color: #0078D4;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
}
.button-link:hover {
  background-color: #005A9E;
}