#reclamaciones-form {
display: flex;
flex-wrap: wrap; }
#reclamaciones-form label {
font-weight: bold;
font-size: 14px; }
#reclamaciones-form input,
#reclamaciones-form select,
#reclamaciones-form textarea {
padding: 10px;
border: 1px solid #ccc;
border-radius: 4px;
font-size: 14px;
box-sizing: border-box;
margin-bottom: 20px;
width: 100%; }
#reclamaciones-form .input-especial {
padding: 10px;
border: 1px solid #ccc;
border-radius: 4px;
font-size: 14px;
box-sizing: border-box;
margin-bottom: 20px;
width: 50%;
float: right;
}
#reclamaciones-form .section-title {
width: 100%;
background-color: #ddd;
padding: 10px;
font-weight: bold;
text-transform: uppercase;
margin-top: 20px;
border: 1px solid #ccc;
font-size: 14px;
box-sizing: border-box;
border-radius: 4px;
}
#reclamaciones-form .small-input {
width: 30%;
padding-right: 10px;
}
#reclamaciones-form .full-input {
width: 100%;
box-sizing: border-box;
}
#reclamaciones-form .half-input {
width: 48%;
box-sizing: border-box;
}
#reclamaciones-form .row1 {
display: flex;
justify-content: space-between;
width: 100%;
}
#reclamaciones-form .rowoption {
display: flex;
justify-content: space-between;
width: 100%;
}
#reclamaciones-form button {
margin-top: 20px;
padding: 10px 20px;
background-color: #5cb85c;
color: white;
border: none;
border-radius: 4px;
cursor: pointer;
font-size: 16px;
text-transform: uppercase;
width: 100%;
}
#reclamaciones-form button:hover {
background-color: #4cae4c;
}
#reclamaciones-form .bordered-section {
width: 100%;
border: 1px solid #000;
padding: 10px;
margin-top: 10px;
box-sizing: border-box;
border-radius: 4px;
}
#reclamaciones-form .date-sheet {
display: flex;
justify-content: space-between;
align-items: center;
width: 100%;
}
#reclamaciones-form .date-sheet .half-input {
width: 48%;
} #reclamaciones-form .radio-buttons {
display: flex;
justify-content: start;
align-items: center;
gap: 20px; }
#reclamaciones-form .radio-buttons label {
display: flex;
align-items: center;
gap: 5px; }
#reclamaciones-form .radio-buttons input[type="radio"] {
margin: 0; }
#reclamaciones-form .observaciones {
font-size: 8px;
color: #666;
margin-top: 0px;
}  #config-form {
max-width: 600px; padding: 20px; border: 1px solid #ddd; border-radius: 5px; background-color: #f9f9f9; box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); } #config-form label {
display: block; margin: 10px 0 5px; } #config-form input,
#config-form select,
#config-form textarea {
width: 100%; padding: 10px; margin-bottom: 10px; border: 1px solid #ccc; border-radius: 4px; box-sizing: border-box; } #config-form button {
background-color: #0073aa; color: #fff; border: none; padding: 10px 15px; font-size: 16px; border-radius: 4px; cursor: pointer; } #config-form button:hover {
background-color: #005177; }
#config-form td {
padding: 0px; border-bottom: 0px solid #ddd; }  .nav-tab-wrapper {
display: flex;
border-bottom: 2px solid #ddd;
margin-bottom: 20px;
}
.nav-tab {
padding: 10px 20px;
margin-right: 5px;
background-color: #f1f1f1;
border: 1px solid #ddd;
border-bottom: none;
border-radius: 5px 5px 0 0;
text-decoration: none;
color: #333;
font-weight: bold;
cursor: pointer;
transition: background-color 0.3s ease, color 0.3s ease;
}
.nav-tab-active {
background-color: #fff;
border-color: #0073aa;
color: #0073aa;
}
.nav-tab:hover {
background-color: #eaeaea;
color: #0073aa;
} .tab-content {
display: none; padding: 20px;
background-color: #fff;
border: 1px solid #ddd;
border-radius: 0 5px 5px 5px;
animation: fadeIn 0.5s ease-in-out;
} .nav-tab-active + .tab-content {
display: block; } @keyframes fadeIn {
from {
opacity: 0;
}
to {
opacity: 1;
}
} table {
width: 100%;
border-collapse: collapse;
margin: 20px 0;
font-size: 16px;
text-align: left;
}
table thead th {
width: 200px; background-color: #e4edb0;
color: #fff;
padding: 10px;
}
table tbody td {
padding: 10px;
border-bottom: 1px solid #ddd;
}
table tbody tr:hover {
background-color: #f9f9f9;
transition: background-color 0.3s ease;
} .pdf-reclamacion {
font-family: Arial, sans-serif;
margin: 20px;
}
.pdf-reclamacion h1 {
text-align: center;
text-transform: uppercase;
font-size: 20px;
font-weight: bold;
text-decoration: underline;
}
.pdf-reclamacion h2 {
text-align: left;
font-size: 15px;
margin-top: 5px;
}
.pdf-reclamacion table {
width: 100%;
border-collapse: collapse;
margin: 0;
}
.pdf-reclamacion th, .pdf-reclamacion td {
border: 1px solid #000;
padding: 8px;
text-align: left;
vertical-align: top;
font-size: 12px;
}
.pdf-reclamacion th {
background-color: #d3cecd;
font-weight: bold;
}
.pdf-reclamacion .observaciones {
font-size: 10px;
color: #666;
margin-top: 20px;
border-top: 1px solid #ccc;
padding-top: 10px;
}
.pdf-reclamacion .textarea {
height: auto;
min-height: 50px;
overflow-wrap: break-word;
}
.pdf-reclamacion .footer-table {
margin-top: 20px;
font-size: 10px;
width: 100%;
}