/* General Styling */
body {
    margin: 0;
    padding: 0;
    font-family: 'Open Sans', Arial, sans-serif;
    background-size: cover;
    background-attachment: fixed;
    color: white;
    text-align: center;
    position: relative;
}
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: -1;
}
h1, h2 {
    font-family: 'Roboto', Arial, sans-serif;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    margin: 20px 0;
}
p {
    font-weight: 400;
    margin: 10px 20px;
}
a {
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}
a:hover {
    color: #FFD700;
    text-decoration: underline;
}

/* Table Styling */
table {
    width: 90%;
    margin: 20px auto;
    border-collapse: collapse;
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.3);
}
th, td {
    padding: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
}
tr:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* Buttons */
.btn {
    padding: 10px 20px;
    background: #007BFF;
    color: white;
    border-radius: 5px;
    text-decoration: none;
    display: inline-block;
    margin: 20px auto;
    font-weight: bold;
    transition: all 0.3s ease;
}
.btn:hover {
    background: #0056b3;
}