/*body styling*/
body {
    font-family: Arial, sans-serif;
    color: white; /* Darker color for readability */
    background-image: url('img/backgroundblack.avif');
    background-size: cover;
    background-attachment: fixed;
}

/* Header styling */
header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    height: 60px   ;
    background-color: darkblue; /* Slight transparency for sky blue */
    box-shadow: white; /* Subtle shadow effect */
    border-radius: 8px; /* Rounded corners */
    margin: 20px;
}

.logo img {
    width: 180px; /* Logo size */
    height: auto;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.15); /* Shadow for logo */
}

/* Navigation styling */
nav {
    background-color: transparent;
    border: none;
}

nav ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    text-align: center;
}

nav ul li {
    display: inline;
    margin-right: 20px;
}

nav ul li a {
    color: white; /* Dark blue for links */
    text-decoration: none;
    font-weight: bold;
    padding: 10px;
    transition: color 0.3s ease, transform 0.2s ease; /* Smooth hover effect */
}

nav ul li a:hover {
    color: #ff69b4; /* Highlight on hover */
    transform: scale(1.1); /* Slight enlargement on hover */
}

table {
    border-collapse: collapse;
    width: 90%; 
    margin-top: 60px;
    margin-left: auto;
    margin-right: auto; 
}

th, td {
    border: 1px solid white;
    padding: 50px;
    text-align: center;
    font-family: Arial, sans-serif; /* Modern font */
    font-size: 16px; /* Adjusted font size for consistency */
    transition: background-color 0.3s ease, color 0.3s ease; 
}

th {
    background-color: blue;
    color: #ffffff; 
    font-size: 18px;
    font-weight: bold;
    text-transform: uppercase; 
}

tr:hover {
    background-color: blue;
    font-weight: bold;
    color: #ffffff;
    cursor: pointer; 
}

tr:nth-child(odd) {
    background-color: darkblue; /* Light blue for odd rows */
}

tr:nth-child(even) {
    background-color: blue; /* Slightly lighter blue for even rows */
}


footer {
    font-size: 20px;
    color: #333;
    margin: 0;
}

footer p {
    font-family: Arial, sans-serif;
    font-size: 20px;
    color: white;
    margin: 0;

}
