/* General styles for the page */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f0f8ff; /* Light background color */
}

/* Style for the header */
header {
    text-align: center;
    margin-bottom: 20px;
}

#logo {
    max-width: 150px; /* Adjust logo size */
    height: auto;
}

h1 {
    font-size: 24px;
    margin: 10px 0;
}

/* Centering the search box and button */
.search-container {
    display: flex;
    flex-direction: column; /* Stack items vertically */
    align-items: center;    /* Center items horizontally */
    margin: 20px;           /* Add some margin around the container */
}

#nationalID {
    padding: 10px;
    margin-bottom: 10px; /* Space between the search box and the button */
    width: 100%;
    max-width: 300px; /* Limit the width of the search box */
    border: 1px solid #ccc;
    border-radius: 5px; /* Rounded corners */
}

button {
    padding: 10px 15px;
    border: none;
    background-color: #C96868;
    color: white;
    border-radius: 5px; /* Rounded corners */
    cursor: pointer;
    max-width: 300px; /* Align with the search box width */
}

button:hover {
    background-color: #921A40;
}

/* Style for the table */
table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px auto; /* Center table horizontally */
    max-width: 1000px; /* Optional: Set a max width for the table */
}

table, th, td {
    border: 1px solid #ddd;
}

th, td {
    padding: 8px;
    text-align: center; /* Center align text in table cells */
}

th {
    background-color: #f2f2f2;
    font-weight: bold; /* Make headers bold */
}

/* Style for the footer paragraph */
#footer-paragraph {
    margin-top: 20px;
    font-size: 20px;
    font-weight: bold;
    color: #333;
    text-align: center;
}

/* Centering the video player */
.video-container {
    display: flex;
    justify-content: center;
    margin-top: 20px; /* Optional spacing */
}
