/* ✅ Info Bar - Premium Glass Effect */
.info-bar {
    width: fit-content;
    margin: 20px auto;
    padding: 12px 30px;
    text-align: center;
    font-size: 1.1rem;
    font-weight: 700;
    color: #ffffff;
    background: linear-gradient(135deg, #4facfe, #00f2fe);
    border-radius: 50px; /* Rounded pill shape */
    box-shadow: 0 8px 20px rgba(79, 172, 254, 0.4);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    animation: fadeIn 1s ease-in-out;
    letter-spacing: 0.5px;
    cursor: pointer;
}

.info-bar:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 12px 25px rgba(0, 242, 254, 0.5);
}

/* ✅ Table Container (Responsive fix) */
.table-responsive {
    width: 100%;
    overflow-x: auto; /* मोबाइल पर टेबल कटेगा नहीं */
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    margin-bottom: 20px;
}

/* ✅ Table Styling */
table {
    width: 100%;
    border-collapse: collapse;
    font-family: 'Urbanist', sans-serif; /* Unifying font */
    background: #ffffff;
    border-radius: 15px;
    overflow: hidden;
    animation: fadeIn 0.8s ease-in-out;
}

th, td {
    padding: 16px 20px;
    text-align: left;
    transition: background 0.3s ease;
}

th {
    background: linear-gradient(90deg, #4e73df, #224abe);
    color: #ffffff;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

tr:nth-child(even) {
    background-color: #f8f9fc;
}

/* ✅ Enhanced Row Hover Effect */
tr:hover {
    background-color: #eaf4ff !important;
    cursor: pointer;
}

/* Cell borders removed for a cleaner look */
td {
    color: #333;
    border-bottom: 1px solid #eee;
}

/* ✅ Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}