body {
    background-color: #F5F5DC;
    color: #4E342E;
    font-family: 'Georgia', serif; 
    padding: 0;
    line-height: 1.6;
     font-family: Arial, sans-serif;
    margin: 0;
    justify-content: center;
    align-items: center;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}
center, .container, form {
    max-width: 900px;
    margin: 30px auto;
    padding: 25px;
    background-color: rgba(255, 255, 255, 0.95); 
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    border: 1px solid #3E2723;
    text-align: center;
}
h1 {
    color: #D2691E;
    text-transform: uppercase;
    font-size: 2.4em;
    margin-bottom: 20px;
    background-color: #4E342E;
    border-bottom: 3px solid #3E2723;
    padding-bottom: 10px;
}

h3 {
    color: #4E342E;
    font-style: italic;
    margin-top: 25px;
}
nav {
    background-color: #3E2723;
    padding: 10px 0;
    border-bottom: 5px solid #D2691E;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}
nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
}

nav ul li {
    margin: 0 20px;
}
img {
  width: 15px;
  height: 15px;
}
nav a {
    text-decoration: none;
    color: #FAF0E6;
    font-weight: bold;
    font-size: 1.1em;
    padding: additional 8px 15px;
    border-radius: 5px;
    transition: background-color 0.3s, color 0.3s;
    display: block;
}

nav a:hover, nav a:focus {
    background-color: #D2691E;
    color: #3E2723;
}
label {
    display: block;
    margin-top: 15px;
    font-weight: bold;
    color: #4E342E;
    text-align: center;
}
.input, input[type="text"], input[type="number"] {
    width: 80%;
    padding: 12px;
    margin: 5px 0 15px 0;
    display: inline-block;
    border: 2px solid #4E342E;
    border-radius: 8px;
    box-sizing: border-box;
    background-color: #FAF0E6;
    transition: border-color 0.3s, box-shadow 0.3s;
    font-size: 1em;
}
.input:focus, input[type="text"]:focus, input[type="number"]:focus {
    border-color: #D2691E;
    box-shadow: 0 0 5px rgba(210, 105, 30, 0.5);
    outline: none;
}
.boton, input[type="submit"], input[type="button"] {
    background-color: #D2691E;
    color: white;
    padding: 12px 25px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1.1em;
    font-weight: bold;
    margin-top: 15px;
    transition: background-color 0.3s, transform 0.1s;
    text-transform: uppercase;
}
.boton:hover, input[type="submit"]:hover, input[type="button"]:hover {
    background-color: #CC5500; 
    transform: translateY(-1px);
    box-shadow: 0 3px 5px rgba(0, 0, 0, 0.3);
}
a {
    color: #D2691E;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s;
}
a:hover {
    text-decoration: underline;
    color: #6B8E23;
}
table {
    width: 95%;
    margin: 25px auto;
    border-collapse: collapse;
    border: 3px solid #3E2723;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

th, td {
    padding: 12px 18px;
    text-align: center;
    border: 1px solid #4E342E;
    font-size: 0.95em;
}
.fantasia-header, .acesorios-header, .distri-header {
    background-color: #3E2723;
    color: #ffa54b;
    text-transform: uppercase;
    font-weight: bold;
    letter-spacing: 1px;
}
table tr:nth-child(even) {
    background-color: #F5F5DC;
}

table tr:nth-child(odd) {
    background-color: #FAF0E6;
}

table tr:hover {
    background-color: #6B8E23;
    color: white;
    cursor: default;
    transition: background-color 0.3s, color 0.3s;
}
table tr:hover td {
    color: white;
}