/* Full-page center */
html, body {
  height: 100%;
  margin: 0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: white; /* slate-900 */
  color: black;      /* gray-200 */
}

.center {
  min-height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.top-right {
	 
	top: 0;
	right: 40px;
	padding: 10px;
}

.table{
	width: 90%;
	
}

.card {
  width: 100%;
  max-width: 380px;
  background: #113c91;         /* Blue */
  border: 1px solid #1f2937;   /* gray-800 */
  border-radius: 16px;
  padding: 25px;
  box-shadow: 0 10px 30px rgba(0,0,0,.35);
}

h1 {
  margin: 0 0 5px 0;
  font-size: 16px;
  font-weight: 700;
  color: white;
  text-align: center;
}

label {
  
  
}


input[type="password"] {
  width: 90%;
  padding: 5px 5px;
  border: 1px solid #374151;
  border-radius: 5px;
  background: white;
  color: black;
  outline: none;
}



input[type="email"]:focus,
input[type="password"]:focus {
  border-color: #3b82f6; /* blue-500 */
  box-shadow: 0 0 0 3px rgba(59,130,246,.25);
}





.note {
  margin-top: 12px;
  font-size: 12px;
  color: #9ca3af;
  text-align: center;
}

.error {
  background: Blue;
  color: White;
  padding: 10px 12px;
  border-radius: 8px;
  margin-bottom: 10px;
  font-size: 14px;
}


.table thead th {
    background-color: #003366 !important;
    color: white !important;
}

.btn-navy {
    background-color: #003366 !important;
    color: white !important;
}

.btn-navy:hover {
    background-color: #002244;
    color: white;
}

/* Enable hover dropdown */
.dropdown:hover .dropdown-menu {
    display: block;
}



.dropdown-menu {
    width: auto !important;
    min-width: unset !important;
}

.dropdown {
    display: inline-block;      /* or inline-flex */
    width: auto;                /* override any width: 100% */
    flex: 0 0 auto;             /* if it's inside a flex container */
}