/* General Styles */
body {
    font-family: 'Arial', sans-serif;
    background-color: white;
    margin: 0;
    padding: 20px;
    color: black;
}

h1 {
    text-align: center;
    color: #4CAF50;
    font-size: 2.5em;
    margin-bottom: 20px;
}

.info {
    text-align: center;
    font-size: 1.2em;
    margin-bottom: 20px;
}

/* File Input and Button */
#file, #toggle {
    display: block;
    margin: 0 auto 20px auto;
    padding: 10px 20px;
    font-size: 1em;
    border-radius: 5px;
}

#file {
    border: 1px solid #ccc;
    background-color: #fff;
    cursor: pointer;
}

#toggle {
    background-color: #4CAF50;
    color: white;
    border: none;
    cursor: pointer;
    user-select: none;
    transition: background-color 0.3s ease;
}

#toggle:hover {
    background-color: #45a049;
}

/* Table Styles */
#notes {
    text-align: center;
    overflow: auto;
}

table {
    border-collapse: collapse;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

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

table th, table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid #ddd;
    font-size: 1em;
}

table th {
    background-color: #4CAF50;
    color: white;
    font-weight: bold;
}

table td:first-child {
    width: 10%;
    text-align: center;
}

table td:last-child {
    text-align: left;
}

/* Warning flag */
.warning {
    background-color: #ffcc00;
    color: #333;
    font-weight: bold;
    padding: 15px;
    border: 2px solid #e6b800;
    border-radius: 5px;
    max-width: 600px;
    margin: 20px auto;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    font-size: 1.1em;
}

.warning ul {
    padding: 0;
    margin: 10px 0 0 0;
}

.warning li {
    text-align: left;
    margin-left: 15px;
    font-weight: normal;
    font-size: 1em;
}

.holder {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    margin: 20px auto;
}

.holder > div {
    margin: 0px 10px;
    width: 100%;
}

.hidden {
    display: none;
}

p {
    margin: 0;
}

p:after {
    content:"";
    display:inline-block;
    width:0px;
}