
.background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background: url('images/hg1.jpg') no-repeat center center/cover; */
    /* filter: contrast(1.2) saturate(1.5); */
    /* filter: blur(10px); Blurs the background image */
    /* z-index: -2;  */
}

body {
    height: 100vh;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-family: Arial, sans-serif;
    background: linear-gradient(135deg, #ff9a9e, #fad0c4, #fbc2eb, #a1c4fd);
    background-attachment: fixed; /* Keeps the background static */
    background-size: cover;
}

/* Light overlay for readability */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.5); /* Light semi-transparent overlay */
    z-index: -1;
}


.login-container {
    position: absolute;
    top: 10%;
    left: 50%;
    transform: translate(-50%, 0);			
    background: rgba(255, 255, 255, 0.7); /* Light transparent white */
    padding: 20px;			
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.7); /* Stronger shadow for contrast */
    border-radius: 8px;
    /*backdrop-filter: blur(0px); /* Soft blur effect for a glassy look */ */
}

form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

input {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

button {
    padding: 10px;
    background-color: #007BFF;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

button:hover {
    background-color: #0056b3;
}

.message {
    color: red;
}

.info {
    color: black;
    font-size: small;
}
    
/* General table styling */
table {
    width: 100%;
    max-width: 90%; /* Adds left/right padding on larger screens */
    margin: 20px auto; /* Centers table */
    border-collapse: collapse;
    background: white;
    color: #333;
    font-family: Arial, sans-serif;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}

/* Table header with a modern gray look */
th {
    background: #f4f4f4; /* Light gray background */
    color: #333; /* Dark gray text */
    font-weight: bold;
    /*text-transform: uppercase;*/
    letter-spacing: 0.5px;
    padding: 14px;
    border-bottom: 2px solid #ddd; /* Subtle bottom border */
}

/* Table cells */
th, td {
    padding: 12px 15px;
    text-align: left;
}

/* Zebra striping */
tr:nth-child(even) {
    background-color: #fafafa;
}

/* Hover effect */
tr:hover {
    background-color: rgba(0, 0, 0, 0.05);
    transition: background 0.3s ease;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    table {
        max-width: 95%; /* Adds more left/right spacing on mobile */
    }

    th, td {
        padding: 10px; /* Smaller padding for better mobile display */
    }
}
