body {
    font-family: Arial, sans-serif;
	font-size: 18px; /* tamaño base */
    display: block;
	overflow: auto;
    justify-content: center;
    align-items: center;
    margin: 0;
	padding-bottom: 80px;
}


.container {
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    padding: 20px;
	font-size: 16px;
}

.container2 {
    background-color: #D9D9D9;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    padding: 20px;
    width: 600px;
}

.container3 {
    background-color: #D9D9D9;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    padding: 20px;
    width: 1400px;
}

.contact-form {
    display: flex;
    flex-direction: column;
}

.contact-form h2 {
    color: #007bff;
    text-align: center;
}

.contact-form label {
    margin: 10px 0 5px;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
    border: 1px solid #007bff;
    border-radius: 4px;
    padding: 10px;
    margin-bottom: 15px;
    font-size: 10px;
}

.contact-form select {
    appearance: none; /* Remove default arrow */
    background-color: #ffffff; /* White background */
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="10" height="10" viewBox="0 0 10 10"><polygon points="0,0 10,0 5,5" fill="%23007bff"/></svg>'); /* Custom arrow */
    background-repeat: no-repeat;
    background-position: right 10px center; /* Position the arrow */
    background-size: 10px; /* Size of the arrow */
}

.contact-form button {
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 4px;
    padding: 10px;
    cursor: pointer;
    font-size: 12px;
}

.contact-form button:hover {
    background-color: #0056b3;
}

.table-container {
    margin-top: 20px;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    padding: 20px;
    width: 100%;
    max-width: 600px; /* Adjust the max width as needed */
}

.table-container h2 {
    color: #007bff;
    text-align: center;
    margin-bottom: 15px;
}

table {
    border-collapse: collapse;
	font-size: 12px;
}

th, td {
    border: 1px solid #ffffff;
    padding: 10px;
    text-align: left;
}

th {
    background-color: #007bff;
    color: white;
}

tr:nth-child(even) {
    background-color: #f2f2f2; /* Light gray for even rows */
}

tr:hover {
    background-color: #e0e0e0; /* Light gray on hover */
}


/* Dropdown Button */
.dropbtn {
  background-color: #272F68;
  color: white;
  padding: 16px;
  font-size: 12px;
  border: none;
}

/* The container <div> - needed to position the dropdown content */
.dropdown {
  position: relative;
  display: inline-block;
}

/* Dropdown Content (Hidden by Default) */
.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f1f1f1;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}

/* Links inside the dropdown */
.dropdown-content a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}

/* Change color of dropdown links on hover */
.dropdown-content a:hover {background-color: #98A0D8;}

/* Show the dropdown menu on hover */
.dropdown:hover .dropdown-content {display: block;}

/* Change the background color of the dropdown button when the dropdown content is shown */
.dropdown:hover .dropbtn {background-color: #98A0D8;}

.bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 70px;
    background: #0c1f4d; /* azul Lightning */
    display: flex;
    justify-content: space-around;
    align-items: center;
    border-top: 2px solid #ffffff20;
    box-shadow: 0 -3px 10px rgba(0,0,0,0.2);
    z-index: 9999;
}

.bottom-nav a {
    color: white;
    text-decoration: none;
    text-align: center;
    font-size: 14px;
}

.bottom-nav span {
    display: block;
    font-size: 22px;
}

.bottom-nav small {
    font-size: 11px;
}
