/* General Styles */
body {
    font-family: 'Poppins', sans-serif;
    background: url('https://www.maxicabsgstransport.com/wp-content/uploads/2021/02/Service-Image9-760x380.jpg') no-repeat center center fixed;
    background-size: cover;
    margin: 0;
    padding: 0;
    color: #ffffff;
}

/* Container Styles */
.container {
    background: rgba(0, 0, 0, 0.6); /* Dark overlay to improve readability */
    padding: 20px;
    border-radius: 10px;
    margin-top: 50px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

/* Heading Styles */
h2 {
    text-align: center;
    color: #ffffff; /* White text for better visibility */
}

/* Table Styles */
.table {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    overflow: hidden;
    backdrop-filter: blur(5px);
}

.table thead {
    background: rgba(0, 0, 0, 0.8);
    color: white;
}

.table th, .table td {
    padding: 15px;
    text-align: left;
    color: white;
}

.table tbody tr:nth-child(even) {
    background: rgba(255, 255, 255, 0.1);
}
