/* Custom font for better readability */
body {
    font-family: 'Inter', sans-serif;
}
/* Ensure the main container takes full height */
html, body {
    height: 100%;
    margin: 0;
}
/* Basic table styling for better readability */
table {
    width: 100%;
    border-collapse: collapse;
}
th, td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid #bfdbfe; /* Light blue border for contrast */
}
th {
    background-color: #93c5fd; /* Medium blue for headers */
    color: #1e3a8a; /* Dark blue text for headers */
}
.color-black{
    color: black;
}
.text-blue-700{
    color: #1e3a8a;
}
/* Added responsive padding for the details section for better spacing on small screens */
.details-col {
    padding-bottom: 0.5rem; /* Small padding at the bottom of each detail item */
}