/* styles.css */

body {
    font-family: Arial, sans-serif;
    background-color: #222; /* Dark background color */
    color: #ddd; /* Text color */
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

h1 {
    text-align: center;
    margin-bottom: 20px;
}

.container {
    width: 80%;
    max-width: 800px;
    padding: 20px;
    margin: 20px auto;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    background-color: rgba(255, 255, 255, 0.1); /* Semi-transparent white background */
    backdrop-filter: blur(5px); /* Apply blur effect to background */
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
    color: #ddd; /* Text color for table */
}

th, td {
    padding: 10px;
    text-align: left;
    border-bottom: 1px solid #666; /* Table border color */
}

th {
    background-color: rgba(50, 50, 50, 0.8); /* Dark background with transparency for table header */
}
