/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Body Styles */
body {
    background-color: #1a1a1a; /* Dark background */
    color: #f0f0f0; /* Light text for contrast */
    font-family: 'Roboto', sans-serif; /* Readable font for body text */
    position: relative;
    min-height: 100vh;
}

/* Header Styles */
header {
    text-align: center;
    padding: 20px;
    background-color: #333; /* Darker background for header */
    border-bottom: 5px solid #444; /* Dark gray to match the dark background */ 
}


h1 {
    font-family: 'Roboto', sans-serif; 
    font-size: 3em;
}

/* Subheading Styles */
h2 {
    font-family: 'Roboto', sans-serif; 
    color: #9c27b0; /* Halloween orange for subheadings */
    border-bottom: 2px dashed #666; /* Dashed underline for sections */
    margin: 20px 0;
}

/* Paragraph Styles */
p {
    font-family: 'Roboto', sans-serif; /* Roboto for body text readability */
    line-height: 1.6;
    margin: 10px 0;
}

/* Link Styles */
a {
    color: #ffcc00; /* Yellow for links */
    text-decoration: none;
    font-weight: bold;
    padding: 5px;
    border-radius: 5px;
    transition: background-color 0.3s;
}

a:hover {
    background-color: rgba(255, 204, 0, 0.3); /* Highlight effect on hover */
}


}

/* Additional Styling for Buttons */
button {
    background-color: #9c27b0; /* Halloween orange for buttons */
    color: #fff;
    border: none;
    border-radius: 5px;
    padding: 10px 15px;
    cursor: pointer;
    transition: background-color 0.3s;
}

button:hover {
    background-color: #e65c00; /* Darker orange on hover */
}

/* Table Styles */
.table-container {
    width: 90%;
    margin: 20px auto;
    overflow-x: auto;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
    background-color: #2c2c2c; /* Darker background for table */
    color: #f0f0f0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

th, td {
    padding: 12px 15px;
    text-align: left;
    border-bottom: 1px solid #444;
}

thead {
    background-color: #ff6600; /* Halloween orange for table header */
    color: white;
}

tbody tr {
    background-color: #333;
    transition: background-color 0.2s ease;
}

tbody tr:hover {
    background-color: #444; /* Highlight effect for rows */
}

/* Footer Styles */
footer {
    text-align: center;
    padding: 20px;
    background-color: #333;
    border-top: 5px solid #444; /* Halloween orange border */
}

footer a.btn {
    padding: 10px 20px;
    background-color: #ff6600;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.2s ease;
}

footer a.btn:hover {
    background-color: #e65c00;
}

/* Responsive Design */
@media (max-width: 768px) {
    h1 {
        font-size: 2.2em;
    }

    table {
        font-size: 0.9em;
    }

    footer a.btn {
        font-size: 0.9em;
        padding: 8px 16px;
    }
}
