/* style.css */
body {
    font-family: Arial, sans-serif;
    margin: 24px;
    background: #f5f7fa;
    color: #222;
}
.container {
    max-width: 1100px;
    margin: 0 auto;
}
h1 { color: #0b4d88; }

.upload-section, .history {
    background: #fff;
    padding: 18px;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.06);
    margin-bottom: 18px;
}
.note { color: #666; font-size: 13px; }

.actions-bar {
    background: #fff;
    padding: 12px 18px;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.06);
    margin-bottom: 18px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}
.actions-bar-buttons {
    display: flex;
    align-items: center;
    gap: 8px;
}
.search-form {
    display: flex;
    gap: 5px;
}
.pagination-controls {
    text-align: right;
    font-size: 14px;
}
.pagination-controls a, .pagination-controls span {
    display: inline-block;
    padding: 5px 10px;
    margin: 0 2px;
    border: 1px solid #e1e6ee;
    border-radius: 4px;
    text-decoration: none;
    color: #0b4d88;
    background: #fff;
}
.pagination-controls span.current {
    background: #0b4d88;
    color: #fff;
    border-color: #0b4d88;
}

.table-scroll {
    overflow-x: auto;
    margin-top: 12px;
    margin-bottom: 12px;
}
table { 
    width: 100%; 
    min-width: 800px; 
    border-collapse: collapse; 
}
th, td { 
    padding: 8px 10px; 
    border: 1px solid #e1e6ee; 
    font-size: 13px; 
    white-space: nowrap; 
}
th { 
    background: #f0f4f8; 
    text-align: left; 
}
input[type="text"] { 
    width: 100%; 
    padding: 6px; 
    box-sizing: border-box; 
    border: 1px solid #ccc;
    border-radius: 4px;
}

button {
    background: #0b4d88;
    color: #fff;
    border: none;
    padding: 8px 14px;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.2s;
}
button:hover { background: #083a66; }

a.back { 
    color: #0b4d88; 
    text-decoration: none; 
}
a.back:hover { 
    text-decoration: underline; 
}

/* --- NEW FOOTER STYLES --- */
.footer {
    text-align: center;
    padding: 20px 0;
    margin-top: 40px; 
    border-top: 1px solid #e1e6ee;
    font-size: 13px;
    color: #666;
}
.footer a {
    color: #0b4d88;
    text-decoration: none;
    font-weight: bold;
}
.footer a:hover {
    text-decoration: underline;
}