/* Page background and font */
body {
    background-image: url('bkg.jpg');
    background-size:cover ; /* Makes the image fit the screen */
    background-position: center; /* Centers the image */
    background-repeat: no-repeat; /* Prevents tiling */
    background-attachment: fixed;
    font-family: 'Roboto', sans-serif;
    font-size: 20px;
    margin: 0;
    padding: 0;
}

/* Center and constrain the main container */
.container {
    max-width: 800px; /* adjust as needed */
    margin: 0 auto;
    text-align: center;
    padding: 1px;
}

/* Ensure full-width elements span the container */
.full-width {
    width: 100%;
}

/* Table styling */
table {
    border-collapse: collapse;
    border: none;
    margin: 0 auto; /* center the table */
}

/* Header styling */
th {
    text-align: center;
    padding: 3px;
    font-size: 14px;
    background: #050505;
    color: white;
    width: auto;
    text-transform: uppercase;
}

/* Data cell styling */
td {
    background: #272625e8;
    color: white;
    text-align: left;
    padding: 2px;
    width: auto;
}

/* Image styling for columns 2 and 3 */
td:nth-child(2) img,
td:nth-child(3) img {
    max-width: 40px;
    height: auto;
    display: block;
    margin: auto;
}

/* Specific cell styling by column */
td:nth-child(1) {
    text-align: center;
    font-size: 20px;
    font-weight: bold;
}
td:nth-child(5) {
    text-align: center;
    font-size: 30px;
    font-weight: bold;
}
td:nth-child(6) {
    text-align: center;
    font-size: 25px;
}
td:nth-child(7) {
    text-align: center;
    font-size: 25px;
}

/* Alternating row styling for main rows */
tr.main-row.even {
    background-color: #000000e6;
}
tr.main-row.odd {
    background-color: #f2f2f2;
}

/* Styling for the CSV file info row */
td[colspan="8"] {
    text-align: center;
    background: rgb(204, 0, 0);
    background: linear-gradient(180deg, rgb(255 6 6) 0%, rgb(203 8 8) 50%, rgb(140 3 3) 100%);
    color: white;
    font-family: 'Roboto', sans-serif;
    font-size: 18px;
    font-weight: normal;
    border-color: white;
}

/* Expand button styling */
.expand-btn {
    cursor: pointer;
    padding: 4px 8px;
    margin: 0;
}

/* Details row (hidden by default) */
.details-row {
    display: none;
    background-color: #f9f9f9;
}

/* Details cell styling */
.details-cell {
    padding: 8px;
}

/* Field label styling */
.field-label {
    font-weight: bold;
}
#csvSelector {
    width: auto; /* Makes the dropdown span the full width of its parent */
    max-width: 800px; /* Adjust as needed to match table width */
    display: block;
    margin: 10px auto; /* Centers the dropdown */
    padding: px; /* Adds some padding for better appearance */
    font-size: 15px; /* Adjust font size */
}
#saveAsImage {
    width: 370px; /* Makes the button span the full width of its parent */
    max-width: 800px; /* Adjust to match table width */
    display: block;
    margin: 20px auto; /* Centers the button */
    padding: 10px 0; /* Adds spacing for a better appearance */
    background-color: #db0101; /* Blue background */
    color: white; /* White text */
    font-size: 18px; /* Adjust font size */
    border: none;
    border-radius: 5px; /* Rounds button corners */
    cursor: pointer;
    transition: background 0.3s ease;
}

/* Hover effect */
#saveAsImage:hover {
    background-color: #9e0303; /* Darker blue when hovered */
}
header {
    text-align: center;
    padding: 10px 0;
    background:#222;
}

/* Centered Logo */
.brand-home-link {
    display: inline-block;
    cursor: pointer;
}

.brand-home-link:hover #pageLogo {
    transform: translateY(-2px);
}

#pageLogo {
    max-width: 300px; /* Adjust as needed */
    height: auto;
    display: block;
    margin: 0 auto;
    transition: transform 0.18s ease;
}
footer {
    background-color: #222; /* Dark background */
    text-align: center; /* Center align */
     /* Space above and below */
    width: 100%; /* Full width */
    height:10%;
    position: relative; /* Sticks footer at bottom */
    bottom: 0;
}

.footer-logo {
    width: 150px; /* Adjust the size of the image */
    height: auto; /* Maintain aspect ratio */
    transition: transform 0.3s ease; /* Smooth hover effect */
}

.footer-logo:hover {
    transform: scale(1.1); /* Slight zoom on hover */
}
.dropdown-label {
    font-size: 30px;  /* Adjust text size */
    font-weight: bold; /* Make it bold */
    color: #ffffff; 
   text-shadow: 2px 2px 4px black; /* Correct text-shadow syntax */
    display: block;   /* Ensure it appears above the dropdown */
    margin-bottom: 5px; /* Add space below the label */
}
