/* === Global Body Styling === */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f9f9f9;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    color: #333;
}

/* === Page Center Container === */
.page-center {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 20px;
    gap: 20px;
}

.access-container {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 40px;
    width: 100%;
    max-width: 400px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.access-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh; /* Full height of the screen */
    padding: 20px;
}

.logo {
    margin-bottom: 10px;
}

.logo img {
    width: 180px;
}

/* === Typography === */
.subtitle {
    font-size: 1.2em;
    font-weight: 500;
    color: #880e1b;
    margin-bottom: 30px;
}

h1, h2, h3 {
    color: #880e1b;
    margin-bottom: 20px;
}

/* === Input Styling === */
input[type="text"] {
    width: 100%;
    padding: 12px;
    font-size: 1em;
    border: 1px solid #ccc;
    border-radius: 6px;
    margin-bottom: 20px;
}

/* === Buttons === */
button, .btn-download {
    background-color: #880e1b;
    color: white;
    border: none;
    padding: 12px 20px;
    font-size: 1em;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s;
    text-decoration: none;
    display: inline-block;
}

button:hover, .btn-download:hover {
    background-color: #6a0d15;
}

.btn-download:disabled {
    background-color: #ccc;
    cursor: not-allowed;
    opacity: 0.7;
}

/* === Container for Content === */
.container {
    max-width: 900px;
    margin: 40px auto;
    padding: 20px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* === Table Styling === */
table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 10px;
}

th, td {
    padding: 18px;
    border: 1px solid #ddd;
    text-align: left;
}

th {
    background-color: #f5f5f5;
    font-weight: bold;
}

.file-table {
    font-size: 1.1em;
}

/* === Alignment Helpers === */
.text-center {
    text-align: center;
}

/* === Footer === */
.footer {
    text-align: center;
    color: #666;
    font-size: 0.9em;
    padding: 20px 0;
    width: 100%;
    margin-top: auto;
}

