        body {
            margin: 0;
            font-family: Arial, sans-serif;
        }

        .navbar {
            position: sticky;
            top: 0;
            background-color: #00338D;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 10px 20px;
            color: white;
        }

        .navbar img {
            height: 40px;
        }

        .navbar a {
	color: white;
	font-weight: bold;
	# background-color: white;  /* White background */
	text-decoration: none;    /* Remove underline */
	padding: 10px 20px;       /* Adds space inside the link (top/bottom, left/right) */
	border-radius: 5px;       /* Optional: Adds rounded corners for a more polished look */	    
        }

        .navbar a.active {
	font-weight: bold;
	background-color: white;  /* White background */
	color: black;             /* Black font color */
	text-decoration: none;    /* Remove underline */
	padding: 10px 20px;       /* Adds space inside the link (top/bottom, left/right) */
	border-radius: 5px;       /* Optional: Adds rounded corners for a more polished look */
        }

        .content {
        padding: 20px;         }

        table {
            width: 100%;
            border-collapse: collapse;
            margin: 20px 0;
            font-size: 1rem;
            background-color: #f9f9f9;
        }

        th, td {
            text-align: left;
            padding: 10px;
            border: 1px solid #ddd;
        }

        th {
            background-color: #00338D;
            color: white;
            cursor: pointer;
        }

        .th-incoming {
            background-color: #5669e3;
            color: white;
            cursor: pointer;
        }

        tr:nth-child(even) {
            background-color: #f2f2f2;
        }

        tr:hover {
            background-color: #ddd;
        }

        .pagination {
            display: flex;
            justify-content: center;
            margin: 20px 0;
        }

        .pagination a {
            margin: 0 5px;
            padding: 8px 16px;
            background-color: #ddd;
            text-decoration: none;
            color: black;
            border-radius: 4px;
        }

        .pagination a.active {
            background-color: #00338D;
            color: white;
        }

	        /* Centering the search bar */
        .search-bar {
            display: flex;
            justify-content: center;
            align-items: center;
            margin: 20px 0;
        }

        /* Styling the input */
        #searchInput {
            width: 80%; /* Set width to 80% */
            font-size: 1.1rem; /* Larger font */
            padding: 5px 5px; /* Add padding for better usability */
            border: 1px solid #ccc; /* Border for clarity */
            border-radius: 8px; /* Rounded corners */
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Subtle shadow for a modern look */
            outline: none; /* Remove the default focus outline */
            transition: border-color 0.3s ease, box-shadow 0.3s ease; /* Smooth transitions */
        }

        /* Hover and focus effects */
        #searchInput:hover, #searchInput:focus {
            border-color: #007BFF; /* Highlight border on focus */
            box-shadow: 0 4px 8px rgba(0, 123, 255, 0.2); /* Enhance shadow on focus */
        }

	        /* Style for the pill container */
        .status-pill-green {
            display: inline-flex;
            align-items: center;
            padding: 5px 15px;
            background-color: #d6e3cc; /* Green background */
            border-radius: 50px; /* Rounded edges for pill shape */
            color: #244425; /* White text */
            font-size: 14px;
            font-weight: bold;
            gap: 8px; /* Space between icon and text */
            box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1); /* Subtle shadow */
        }

        /* Style for the checkmark icon */
        .status-pill-green .icon {
            display: flex;
            justify-content: center;
            align-items: center;
            width: 20px;
            height: 20px;
            background-color: #244425;
            color: #ffffff; /* checkmark */
            border-radius: 50%; /* Circle shape */
            font-size: 12px; /* Smaller icon */
            font-weight: bold;
        }

        /* Style for the pill container - Yellow */
.status-pill-yellow {
    display: inline-flex;
    align-items: center;
    padding: 5px 15px;
    background-color: #fff5cc; /* Yellow background */
    border-radius: 50px; /* Rounded edges for pill shape */
    color: #856404; /* Yellow text */
    font-size: 14px;
    font-weight: bold;
    gap: 8px; /* Space between icon and text */
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1); /* Subtle shadow */
}

/* Style for the checkmark icon - Yellow */
.status-pill-yellow .icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 20px;
    height: 20px;
    background-color: #856404;
    color: #ffffff; /* Checkmark */
    border-radius: 50%; /* Circle shape */
    font-size: 12px; /* Smaller icon */
    font-weight: bold;
}

/* Style for the pill container - Red */
.status-pill-red {
    display: inline-flex;
    align-items: center;
    padding: 5px 15px;
    background-color: #fbc8c4; /* Red background */
    border-radius: 50px; /* Rounded edges for pill shape */
    color: #691818; /* Red text */
    font-size: 14px;
    font-weight: bold;
    gap: 8px; /* Space between icon and text */
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1); /* Subtle shadow */
}

/* Style for the checkmark icon - Red */
.status-pill-red .icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 20px;
    height: 20px;
    background-color: #691818;
    color: #ffffff; /* Checkmark */
    border-radius: 50%; /* Circle shape */
    font-size: 12px; /* Smaller icon */
    font-weight: bold;
}

.filter-link {
    color: inherit; /* Makes the link color inherit from the parent element */
    text-decoration: none; /* Removes the underline */
    background-color: #565656;
    color: #ffffff; /* Checkmark */
    display: inline-flex;
    align-items: center;
    padding: 5px 15px;
    background-color: #c9c8c8; /* Red background */
    border-radius: 50px; /* Rounded edges for pill shape */
    color: #000000; /* Red text */
    font-size: 14px;
    font-weight: bold;
    gap: 8px; /* Space between icon and text */
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1); /* Subtle shadow */
 
}

.filter-link-green {
    color: inherit; /* Makes the link color inherit from the parent element */
    text-decoration: none; /* Removes the underline */
    background-color: #244425;
    color: #ffffff; /* Checkmark */
    display: inline-flex;
    align-items: center;
    padding: 5px 15px;
    background-color: #d6e3cc; /* Red background */
    border-radius: 50px; /* Rounded edges for pill shape */
    color: #000000; /* Red text */
    font-size: 14px;
    font-weight: bold;
    gap: 8px; /* Space between icon and text */
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1); /* Subtle shadow */
 
}

.filter-link-yellow {
    color: inherit; /* Makes the link color inherit from the parent element */
    text-decoration: none; /* Removes the underline */
    background-color: #565656;
    color: #ffffff; /* Checkmark */
    display: inline-flex;
    align-items: center;
    padding: 5px 15px;
    background-color: #fff5cc; /* Red background */
    border-radius: 50px; /* Rounded edges for pill shape */
    color: #000000; /* Red text */
    font-size: 14px;
    font-weight: bold;
    gap: 8px; /* Space between icon and text */
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1); /* Subtle shadow */
 
}

.filter-link-red {
    color: inherit; /* Makes the link color inherit from the parent element */
    text-decoration: none; /* Removes the underline */
    background-color: #565656;
    color: #ffffff; /* Checkmark */
    display: inline-flex;
    align-items: center;
    padding: 5px 15px;
    background-color: #fbc8c4; /* Red background */
    border-radius: 50px; /* Rounded edges for pill shape */
    color: #691818; /* Red text */
    font-size: 14px;
    font-weight: bold;
    gap: 8px; /* Space between icon and text */
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1); /* Subtle shadow */
 
}

.filter-link:hover {
    color: #000; /* Optional: Change color on hover */
    text-decoration: underline; /* Optional: Add underline on hover */
}

.nav-container {
    position: relative;
    padding: 10px;
}

.navigation {
    display: flex;
    background-color: #00338D;
    gap: 10px;
}

.navigation a {
    color: white;
    text-decoration: none;
    padding: 8px 12px;
}

.navigation a.active {
    border-color: #ffffff;
    padding: 8px 12px;
}

.hamburger {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: white;
    cursor: pointer;
}

@media (max-width: 768px) {
    .navigation {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 50px;
        left: -100;
        right: 0;
    }

    .navigation.show {
        display: flex;
    }

    .hamburger {
        display: block;
    }
}


.progress-container {
    width: 80%;
    background-color: #ddd;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.progress-bar {
    height: 30px;
    width: 0;
    background-color: #4caf50;
    text-align: center;
    color: white;
    line-height: 30px;
    font-size: 14px;
    transition: width 0.1s linear;

    /* General button styling */

.button-green {
    font-family: Arial, sans-serif;
    font-size: 32px;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    background-color: #28a745; /* Green */
    color: white;
    
  }

.button-red {
    font-family: Arial, sans-serif;
    font-size: 32px;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    background-color: #28a745; /* Green */
    color: white;
    background-color: #dc3545; /* Red */
    color: white;
  }
    
/* General tooltip container */


/* Adjustments for overlay placement */
.tooltip-text {
    position: absolute; /* Repositioned dynamically when moved to the body */
    position: absolute; /* Positioned outside of the tooltip container */
    background-color: #5f8bb7; /* Light grey background */
    color: #1e3a8a; /* Dark blue text */
    padding: 12px;
    border-radius: 6px; /* Rounded corners */
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.15); /* Subtle shadow for depth */
    z-index: 9999; /* Ensure it appears above all other elements */
    white-space: nowrap; /* Prevent text wrapping */
    pointer-events: none; /* Prevent the tooltip from interfering with hover */
    transition: opacity 0.2s ease-in-out;
}

/* ADMIN AREA */

.admin-content {
    display: flex;
    flex-wrap: wrap; /* Allows wrapping if there isn't enough space */
    gap: 10px;       /* Adds space between the items */
    max-width: 100%; /* Ensures items use the full available width */
}

.admin-item {
    display: flex;
    align-items: center; /* Aligns content vertically */
    gap: 10px;           /* Space between image and link */
    padding: 10px;
    background: #e0e0e0;
    border-radius: 5px;
    flex: 1 1 calc(50% - 10px); /* Each item takes up half the width, with a gap */
}

.admin-item img {
    width: 40px;
    height: 40px;
}

.admin-item a {
    text-decoration: none;
    color: #333;
    font-weight: bold;
}

.admin-item:hover {
    background: #17df1b;
}

.admin-container {
    display: flex;
    background: #e09090;
    gap: 10px; /* Optional: spacing between the divs */
}