button {
    border-radius: 5px;
    display: inline-block;
    cursor: pointer;
    font-size: 1.1em;
    padding: 0.4em 0.5em;
    text-decoration: none;
    text-shadow: 0px 1px 0px #2b665e;
    background-position: center;
    font-family: 'Roboto', sans-serif;
    color: #ffffff;
    background-color: #768d87;
    border: 1px solid #566963;
}
.buttonTablero {
    border-radius: 5px;
    display: inline-block;
    cursor: pointer;
    font-size: 0.8em;
    padding: 0.1em 0.1em;
    text-decoration: none;
    text-shadow: 0px 1px 0px #2b665e;
    background-position: center;
    font-family: 'Roboto', sans-serif;
    color: #ffffff;
    background-color: #768d87;
    border: 1px solid #566963;
}

button:hover {
    background-color: #406565;
}
body {
    font-size: 0.9em;
    font-family: 'Roboto', sans-serif; /* Ensure 'Roboto' is loaded, fallback to a generic sans-serif */
    color: black;
    margin: 1em;
    padding: 1em;
    background-color: white;
    line-height: 1.5;
}

/* DarkButton class for less friendly actions */
.darkButton {
    border-radius: 5px; /* Sharper edges */
    background-color: #444444; /* Darker background */
    border: 1px solid #222222; /* Darker border */
    color: #ffffff; /* White text for contrast */
    text-shadow: none; /* No text shadow for a more serious look */
    padding: 0.4em 0.5em;
    font-size: 1.1em;
    cursor: pointer;
    float: right; /* Aligns the button to the right */
}

/* Hover effect for darkButton */
.darkButton:hover {
    background-color: #000000; /* Even darker on hover */
    color: #ffffff; /* Red text on hover for a more alarming effect */
    border: 1px solid #ffffff; /* Red border on hover to match text */
}

.upload-label {
    border-radius: 5px;
    display: inline-block;
    cursor: pointer;
    font-size: 1.1em;
    padding: 0.4em 0.5em;
    text-decoration: none;
    text-shadow: 0px 1px 0px #2b665e;
    background-position: center;
    font-family: 'Roboto', sans-serif;
    color: #ffffff;
    background-color: #768d87;
    border: 1px solid #566963;
    transition: background-color 0.3s ease; /* Smooth transition for hover effect */
}

/* Add hover effect */
.upload-label:hover {
    background-color: #406565;
}


/* Drag-and-drop area styling */
.drop-zone {
    border: 2px dashed #768d87;
    border-radius: 1em;
    padding: 8em;
    text-align: center;
    background-color: #f9f9f9;
    cursor: pointer;
    margin-top: 10px;
    margin-bottom: 10px;
}

.drop-zone.dragover {
    background-color: #d9f1ff;
}

#fileList {
    list-style-type: none;
    padding: 0;
}

#fileList li {
    padding: 5px;
    margin: 5px 0;
    background-color: #f1f1f1;
    border: 1px solid #ccc;
    border-radius: 5px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#fileList li button {
    background-color: red;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    padding: 5px 10px;
}

a {
    color: #406565; /* Change the color to red */
    text-decoration: none; /* Remove the underline */
}

a:hover {
    color: #2acab5; /* Change the color on hover to green */
    text-decoration: underline; /* Add underline on hover (optional) */
}

table {
    width: auto;
    border-collapse: collapse;
    font-family: Arial, sans-serif;
    margin: 20px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

th, td {
    padding: 12px 15px;
    border: 1px solid #ddd;
    text-align: left;
    color: #333;
}

th {
    background-color: #f4f4f4;
    font-weight: bold;
    font-size: 1.1em;
}

tr:nth-child(even) {
    background-color: #f9f9f9;
}

tr:hover {
    background-color: #f1f1f1;
}

td {
    font-size: 0.95em;
}

/* Style for empty table cells */
td:empty {
    background-color: #ffe6e6; /* Light, soft red */
    color: #333; /* Optional: Set color to keep it consistent */
}

/* Style for empty span cells */
.empty-highlight {
    background-color: #ffe6e6; /* Light, soft red */
    padding: 4px; /* Optional: add padding for visibility */
    border-radius: 3px; /* Optional: add rounded corners */
}


caption {
    font-size: 1.5em;
    margin-bottom: 10px;
    color: #333;
    font-weight: bold;
}

        /* Styling for Accordion Header */
        .accordion-header {
            background-color: #566963;
            color: white;
            padding: 8px 15px; /* Reduced padding for less height */
            border-radius: 8px;
            cursor: pointer;
            margin-top: 10px;
            margin-bottom: 10px;
            font-weight: bold;
            display: flex;
            align-items: center;
            justify-content: space-between;
            transition: background-color 0.3s ease;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
            font-size: 0.9em; /* Slightly smaller font */
        }

        .accordion-header:hover {
            background-color: #768d87;
        }

        /* Chevron Icon */
        .accordion-header .chevron {
            font-size: 1.2em;
            transition: transform 0.3s ease;
        }

        /* Rotate Chevron when Open */
        .accordion-header.open .chevron {
            transform: rotate(90deg);
        }

        /* Styling for Accordion Content */
        .accordion-content {
            display: none;
            overflow-x: auto; /* Enable horizontal scroll */
            padding: 15px;
            border: 1px solid #768d87;
            border-radius: 8px;
            background-color: #f5f5f5;
            margin-top: 5px;
            color: #333;
            font-size: 0.9em;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
        }

        /* Styling for the main accordion sections */
.accordion-section {
    cursor: pointer;
    padding: 10px;
    border: 1px solid #768d87;
    margin-bottom: 5px;
    font-family: 'Roboto', sans-serif;
    background-color: #f4f7f6;
}

.accordion-section h3 {
    margin: 0;
    font-size: 18px;
}

/* Styling for nested accordions */
.nested-accordion .accordion-section {
    margin-left: 20px;
    padding: 8px;
    background-color: #e8f0ef;
}

.nested-accordion .accordion-section h4 {
    margin: 0;
    font-size: 16px;
}

.accordion-content {
    display: none;
    padding-left: 10px;
    max-width: 100%;
    overflow-x: auto; /* Enable horizontal scroll */
}

/* Accordion content visible */
.accordion-content.show {
    display: block;
}

/* Second Nested Accordion */
.second-nested-accordion .accordion-section {
    margin-left: 40px;
    padding: 6px;
    background-color: #d0e4e3;
}

.second-nested-accordion .accordion-section h5 {
    margin: 0;
    font-size: 14px;
}

