<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* General Styling */
.kaizen-banner {
    background-color: #fff;
    padding: 60px 20px;
    text-align: center;
    color: #000;

}

h1 {
    font-size: 32px;
}

/* Main container */
.container {
    max-width: 80%;
    margin: 20px auto;
    background-color: #fff;
    border-radius: 4px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    padding: 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

/* Apply a max-width for larger screens */
        @media (min-width: 800px) {
            .container {
                max-width: 80%;
                margin: 20px auto;
            }
        }


/* Search bar */
.controls {
    text-align: right;
    margin-bottom: 15px;
    display: flex;
    justify-content: flex-end; /* Aligns the search bar to the right */
}

.search-input {
    padding: 10px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 25px;
    width: 300px; /* You can adjust the width as needed */
}

/* Highlight search input when clicked */
.search-input:focus {
    outline: none;
    border-color: #00A1E0;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
}


/* Table Styling */
table {
            border-collapse: collapse;
            width: 100%;
            margin-top: 20px;
            background-color: white; /* White background color */
            color: #333;
        }
#blogsTable a {
    text-decoration: none;
}

#blogsTable a:hover {
    text-decoration: underline;
}


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

th {
    background-color: #f0f7ff;
    color: black;
    position: relative;
}


/* Filter Arrows */
.filter-icon {
    cursor: pointer;
    font-size: 12px;
    margin-left: 5px;
}

/* Dropdown Filter Menu */
.kaizen-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: white;
    border: 1px solid #ccc;
    padding: 10px;
    z-index: 100;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    gap: 5px;
}


.kaizen-dropdown label {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-weight: normal; /* Ensure text is not bold */
    font-family: Arial, sans-serif;
    background-color: #fff; /* Keep it white like the table background */
    color: #555; /* Slightly lighter color for differentiation */
    padding: 5px 10px; /* Padding for better spacing */
    border-radius: 4px; /* Subtle rounding */
}

.kaizen-dropdown label:hover {
    background-color: #f0f0f0; /* Light gray background on hover */
    color: #333; /* Darker text color on hover */
}

.kaizen-dropdown label input {
    margin-right: 10px; /* Adjust the spacing as needed */
}

/* Table row hover effect */
tbody tr:hover {
    background-color: #f0f8ff;
}

#category-header p,
#year-header p {
    display: flex;
    align-items: center; /* Aligns the text and arrow vertically */
    margin: 0; /* Removes any default margin */
}

.filter-icon {
    margin-left: 5px; /* Space between the text and the arrow */
    font-size: 12px;
    cursor: pointer;
}
</pre></body></html>