@import url("//maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css");
        /* Base styles */
        body {
            font-family: Arial, sans-serif;
            margin: 10px;
            background-color: #f4f4f9;
        }

        h2 {
            text-align: center;
            margin-bottom: 20px;
        }

        /* Table styles */
        .responsive-table {
            width: 100%;
			border-radius: 5px;
            border-collapse: collapse;
            box-shadow: 0 40px 60px rgba(0,0,0,0.1);
            background-color: white;
			
        }

        .responsive-table thead {
            border-radius: 5px;
			 background: url('../img/metallicblue.png') repeat;
			background-size: auto;
			
            color: #ffffff;
        }
i {
    color: white; /* Makes all icons white */
}
.responsive-table th, 
.responsive-table td {
    padding: 12px 15px;
    border: 1px solid #dddddd;
    border-radius: 5px;
    font-family: -apple-system, BlinkMacSystemFont, "SF Pro", "Inter", "Roboto", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
    transition: all 0.3s ease-in-out; /* Smooth transition */
}

/* Mouse-over effect */
.responsive-table td:hover {
    background: linear-gradient(to right, #f0f0f0, #d9d9d9); /* Light metallic gradient */
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.2); /* Soft shadow */
    transform: scale(1.15); /* Slight zoom effect */
    cursor: pointer; /* Show pointer cursor */
}

        .responsive-table tbody tr:nth-child(even) {
            background-color: #f3f3f3;
        }

        /* Search box styles */
        .search-container {
            margin-bottom: 10px;
            display: flex;
            flex-wrap: wrap;
            gap: 5px;
        }

        .search-container input {
            flex: 1;
            padding: 8px;
            border: 1px solid #ddd;
            border-radius: 4px;
            min-width: 150px;
        }

        /* Card view styles */
        .card-container {
            display: none;
            flex-direction: column;
            gap: 15px;
        }

        .card {
            background: white;
            border: 1px solid #ddd;
            padding: 15px;
            border-radius: 8px;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
			font-family: -apple-system, BlinkMacSystemFont, "SF Pro", "Inter", "Roboto", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
        }

        .card div strong {
            color: #009879;
        }

        /* Responsive adjustments */
        @media (max-width: 768px) {
            .responsive-table {
                display: none;
            }
            .card-container {
                display: flex;
            }
        }
.info-icon {
    font-size: 18px;
    margin-left: 8px;
    cursor: pointer;
    color: #007bff; /* Blue color */
    transition: color 0.3s;
}

.info-icon:hover {
    color: #0056b3; /* Darker blue on hover */
}

/* Navbar Styles */
.navbar {
	border-radius: 5px;
    display: flex;
    justify-content: space-between;
    align-items: center;
     background: url('../img/metallicburgundy.png') repeat;
    background-size: auto;
    padding: 15px 20px;
    font-family: "SF Pro Display", sans-serif;
}

.navbar .logo {
    font-size: 20px;
    font-weight: bold;
    color: white;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
    padding: 0;
    margin: 0;
}

.nav-links li {
    position: relative;
}

.nav-links a {
    text-decoration: none;
    color: white;
    font-size: 16px;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #f0f0f0;
}

/* Dropdown Styling */
.dropdown-menu {
    display: none;
    position: absolute;
    background-color: #007d63;
    top: 30px;
    end: 0;
    min-width: 150px;
    list-style: none;
    padding: 10px;
    border-radius: 5px;
	z-index:99999;
}

.dropdown-menu li {
    padding: 5px 0;
}

.dropdown-menu a {
    color: white;
    display: block;
    padding: 5px 10px;
}

.dropdown-menu a:hover {
    background-color: #005f4d;
    border-radius: 3px;
}

/* Show dropdown on hover */
.dropdown:hover .dropdown-menu {
    display: block;
	
}

/* Hamburger Menu for Mobile */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: white;
    margin: 4px;
    transition: all 0.3s ease-in-out;
}

/* Responsive Styles */
@media (max-width: 768px) {
.copyright-bar {
    display:none;
}
    .nav-links {
        display: none;
        flex-direction: column;
        background: linear-gradient(90deg, red, black) !important;
        position: absolute;
        top: 95px;
        left: 30%;
        width: 60%;
		border-radius: 0 0 10px 10px;
        padding: 10px 10px;
        text-align: end;
		z-index:99999;
    }

    .nav-links li {
        margin: 10px 0;
    }

    .hamburger {
        display: flex;
    }

    .nav-active {
        display: flex;
		
    }

    /* Hamburger Animation */
    .hamburger.open span:first-child {
        //transform: rotate(45deg) translate(5px, 5px);
    }
    
    .hamburger.open span:nth-child(2) {
        opacity: 0;
		
    }
    
    .hamburger.open span:last-child {
        transform: rotate(-45deg) translate(5px, -5px);
    }
}

.content {
    width: 96%;
    height: 85vh;
	align:center;
    background: white;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    padding: 20px;
    text-align: left;
}
.copyright-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to right, #333, #555); /* Metallic dark gradient */
    color: white;
    text-align: center;
    padding: 8px 0;
    font-size: 14px;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}