/* Slider arrow controls */
#download-image {
    display: inline-block;
    padding: 10px 20px;
    background: #EF5A10;
    color: #fff;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 500;
    transition: background 0.3s;
    font-family: 'Roboto', Arial, sans-serif;
    margin-top: 10px;
}
#download-image:hover {
    background: #d64700;
    color: #fff;
}
#slider-left, #slider-right {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    color: #EF5A10;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    font-size: 24px;
    cursor: pointer;
    z-index: 2;
    transition: background 0.3s, color 0.3s;
}

#slider-left {
    left: 10px;
}
#slider-right {
    right: 10px;
}

#slider-left:hover, #slider-right:hover {
    background: none;
    color: #fff;
}
.page {
    width: 425px;
    height: 600px;
    background: #fff;
    border: 1px solid #e0e0e0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 0;
}
/* Flipbook control buttons */
#flipbook-controls button {
    padding: 10px 20px;
    background-color: #EF5A10;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    font-family: 'Roboto', Arial, sans-serif;
    font-weight: 500;
    cursor: pointer;
    margin: 0 5px 10px 0;
    transition: background-color 0.3s ease;
}

#flipbook-controls button:hover {
    background-color: none;
}
/* Flipbook styles */
#flipbook {
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
    border-radius: 8px;
    background: #fafafa;
    overflow: hidden;
}

.page {
    background: #fff;
    border: 1px solid #e0e0e0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    overflow: hidden;
    padding: 0;
}

.page img {
    border-radius: 4px;
    box-shadow: none;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Ensure slider-image is interactive for zoom */
.slider-image {
    pointer-events: auto;
    cursor: zoom-in;
    transition: cursor 0.2s;
}
.slider-image.zoomed {
    cursor: zoom-out;
}

/* Lightbox overlay styles */
#lightbox-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0,0,0,0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    flex-direction: row;
}
#lightbox-img {
    max-width: 80vw;
    max-height: 80vh;
    border-radius: 8px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.5);
    background: #fff;
}
#lightbox-close {
    position: absolute;
    top: 30px;
    right: 40px;
    font-size: 40px;
    color: #fff;
    cursor: pointer;
    z-index: 10001;
    background: none;
    border: none;
}
.lightbox-arrow {
    background: rgba(0,0,0,0.5);
    color: #fff;
    border: none;
    font-size: 32px;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    cursor: pointer;
    margin: 0 20px;
    z-index: 10000;
    transition: background 0.3s;
}
.lightbox-arrow:hover {
    background: #EF5A10;
    color: #fff;
}
/* General styles for navbar */
.navbar {
    display: flex;
    flex-direction: column;
    background-color: #fff; /* Change background to white */
    color: #000; /* Change font color to black */
    padding: 10px;
    font-family: 'Roboto', Arial, sans-serif;
    font-size: 14px; /* Smaller font size for navbar */
}

.navbar-top {
    display: flex;
    justify-content: space-between;
    border-bottom: #999 solid 1px; /* Change border color to black */
    align-items: center;
    padding: 10px 20px;
    margin-bottom: 10px;
}

.navbar-top > div {
    display: flex; /* Align items inline */
    align-items: center; /* Vertically align items */
}

.navbar-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    margin-bottom: 10px;
}

.navbar-top .logo, .navbar-bottom .menu-links, .navbar-bottom .social-links {
    display: flex;
    align-items: center;
}

.navbar-bottom .menu-links a, .navbar-bottom .social-links a {
    margin: 0 10px;
    color: #000; /* Change link color to black */
    text-decoration: none;
    font-family: 'Roboto', Arial, sans-serif;
    font-size: 14px; /* Smaller font size for links */
}

.menu-links {
    position: relative;
}

.submenu {
    position: relative;
}

.submenu > a {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.dropdown-indicator {
    font-size: 12px;
    color: #333;
    transition: transform 0.3s ease;
}

.submenu:hover .dropdown-indicator {
    transform: rotate(180deg); /* Rotate the arrow when hovered */
}

.submenu-items {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #fff;
    box-shadow: none;
    z-index: 1000;
    padding: 10px;
    border-radius: 4px;
}

.submenu:hover .submenu-items {
    display: block;
}

.submenu-items a {
    display: block;
    padding: 5px 10px;
    color: #333;
    text-decoration: none;
    font-size: 14px;
}

.submenu-items a:hover {
    background-color: #f0f0f0;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    z-index: 1001; /* Ensure it appears above other elements */
    position: relative; /* Ensure proper positioning */
}

.hamburger div {
    width: 25px;
    height: 3px;
    background-color: #000; /* Change hamburger lines to black */
    margin: 3px 0;
    transition: all 0.3s ease; /* Smooth transition for animations */
}

.hamburger.active div:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px); /* Top line rotates */
}

.hamburger.active div:nth-child(2) {
    opacity: 0; /* Middle line disappears */
}

.hamburger.active div:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px); /* Bottom line rotates */
}

.offcanvas-menu {
    display: none; /* Initially hidden */
    flex-direction: column;
    background-color: #fff; /* Change offcanvas menu background to white */
    position: fixed;
    top: 0;
    right: 0;
    height: 100%;
    width: 200px;
    padding: 20px;
    z-index: 1000;
    overflow-y: auto;
    box-shadow: -2px 0 5px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease-in-out; /* Smooth slide-in effect */
    transform: translateX(100%); /* Initially hidden off-screen */
    font-family: 'Roboto', Arial, sans-serif;
}

.offcanvas-menu a {
    color: #000; /* Change offcanvas menu link color to black */
    text-decoration: none;
    margin: 10px 0;
}

.offcanvas-menu.show {
    display: flex; /* Ensure it becomes visible */
    transform: translateX(0); /* Slide in when visible */
}

/* Four-column navbar */
.four-column-navbar {
    display: grid;
    grid-template-columns: 1fr 2fr 2fr 1fr;
    background-color: #222;
    color: white;
    padding: 20px;
    gap: 10px;
    font-family: 'Roboto', Arial, sans-serif;
}

footer.four-column-navbar {
    padding: 20px;
    margin-top: 50px; /* Increase margin to provide space for the masonry layout */
    font-family: 'Roboto', Arial, sans-serif;
    font-size: 12px; /* Smaller font size for footer */
    background-color: #222; /* Ensure footer has a distinct background */
    color: white;
    clear: both; /* Ensure it clears floated or grid content above */
}

.four-column-navbar .column {
    display: flex;
    flex-direction: column;
}

.four-column-navbar .column a {
    color: white;
    text-decoration: none;
    margin: 5px 0;
    font-size: 12px; /* Smaller font size for footer links */
}

body {
    margin: 0;
    font-family: 'Roboto', Arial, sans-serif; /* Updated font family */
    background-color: #fff;
    color: #333;
}

main {
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
    margin-bottom: 50px; /* Add spacing to prevent overlap with footer */
}

.fa {
    font-size: 14px;
    color: #333;
}

/* Auth Modal */
#auth-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
}

.modal-content {
    background-color: none;
    margin: 10% auto;
    padding: 20px;
    border: none;
    width: 90%;
    max-width: 400px;
    border-radius: 8px;
    position: relative;
}

.close-modal {
    position: absolute;
    right: 15px;
    top: 10px;
    font-size: 24px;
    cursor: pointer;
    color: #fff;
}

#auth-tabs {
    display: flex;
    justify-content: space-around;
    margin-bottom: 20px;
}

.tab-link {
    background: none;
    border: none;
    padding: 10px;
    cursor: pointer;
    color: #fff;
    font-size: 16px;
}

.tab-link.active {
    border-bottom: 2px solid #fff;
    font-weight: bold;
}

.auth-form {
    display: none;
}

.auth-form a {
    color: #fff;
    text-decoration: none;
}

.auth-form.active {
    display: block;
}

.auth-form input {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-sizing: border-box;
}

.auth-form button {
    width: 100%;
    padding: 10px;
    background-color: #A7C4D2;
    color: #333;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    margin-bottom: 10px;
}

.auth-form button:hover {
    background-color: #758b96;
    color: #fff;
}

#login-message,
#register-message {
    margin-top: 15px;
    text-align: center;
}

/* Auth Button Styles */
#auth-button, #logout-button {
    padding: 8px 10px;
    border-radius: 4px;
    transition: all 0.3s ease;
    font-weight: 500;
    margin-left: 10px;
    margin-right: 10px; /* Add spacing between buttons and profile icon */
}

#auth-button {
    background-color: #fff;
    color: #333;
    border: 1px solid #333;
}

#auth-button:hover {
    background-color: #999;
    color: #000;
    border: none;
}

#logout-button {
    background-color: #999;
    color: #fff;
    border: 1px solid #333;
}

#logout-button:hover {
    background-color: #444;
    color: white;
}

/* Download Button Styles */
#download-excel-btn {
    display: inline-block;
    padding: 10px 20px;
    background: #EF5A10;
    color: #fff;
    border-radius: 4px;
    border: none;
    font-weight: 600;
    font-family: 'Roboto', Arial, sans-serif;
    font-size: 15px;
    cursor: pointer;
    transition: background 0.3s, color 0.3s;
    margin-bottom: 16px;
    float: right;
}

#download-excel-btn:hover {
    background: #d64700;
    color: #fff;
}

/* Verify Button and Verified Label Styles */
.verify-entry-btn {
    background:  #aaa;
    color: #fff;
    border: none;
    padding: 6px 12px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    transition: background 0.2s;
}
.verify-entry-btn:disabled {
    background: #4CAF50;
    cursor: not-allowed;
}
.verified-label {
    color: green;
    font-weight: bold;
    margin-left: 8px;
    font-size: 14px;
}

/* Stale label styling */
.stale-label {
    color: #d32f2f; /* red */
    font-weight: bold;
    margin-left: 8px;
    font-size: 14px;
}

/* Unpaid label styling */
.unpaid-label {
    color: #FFA500; /* orange */
    font-weight: bold;
    margin-left: 8px;
    font-size: 14px;
}

/* Responsive styles */
@media (max-width: 768px) {
    .hamburger {
        display: flex; /* Show hamburger in mobile view */
    }

    .navbar-bottom .menu-links, .navbar-bottom .social-links {
        display: none; /* Hide menu links in mobile view */
    }

    .offcanvas-menu {
        display: flex; /* Ensure offcanvas menu is flex for mobile view */
    }
}

#profile-item {
    list-style: none;
    margin: 0;
    padding: 0;
    display: inline-block; /* Align inline with buttons */
}

#profile-item a {
    text-decoration: none; /* Remove underline */
    color: #333; /* Match the button text color */
    font-size: 20px; /* Adjust icon size */
    display: flex;
    align-items: center; /* Vertically align with buttons */
}

/* Add News Section */
.add-news-section {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    background-color: none;
    border-radius: 8px;
    box-shadow: none;
}

.add-news-section h1 {
    text-align: center;
    margin-bottom: 20px;
    font-size: 24px;
    color: #333;
}

#add-news-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

#add-news-form label {
    font-weight: bold;
    color: #555;
}

#add-news-form input,
#add-news-form textarea,
#add-news-form button {
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    width: 100%;
    box-sizing: border-box;
}

#add-news-form textarea {
    resize: vertical;
}

#add-news-form button {
    background-color: #EF5A10;
    color: white;
    border: none;
    cursor: pointer;
    font-weight: bold;
}

#add-news-form button:hover {
    background-color: #d64700;
}

#news-content-editor {
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 10px;
    background-color: #fff;
    font-size: 14px;
    font-family: 'Roboto', Arial, sans-serif;
    box-sizing: border-box;
    min-height: 200px;
}

/* Quill toolbar styles */
.ql-toolbar {
    display: flex;
    flex-wrap: wrap;
    border: 1px solid #ddd;
    background-color: #f9f9f9;
    padding: 5px;
    border-radius: 4px;
    box-sizing: border-box;
}

.ql-toolbar button {
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    margin: 2px;
    font-size: 14px;
    color: #333;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ql-toolbar button:hover {
    background-color: #e0e0e0;
}

.ql-toolbar .ql-active {
    background-color: #d0d0d0;
}

.ql-toolbar .ql-picker {
    color: #333;
    font-size: 14px;
}

.ql-toolbar .ql-picker-label {
    padding: 5px;
    cursor: pointer;
}

.ql-toolbar .ql-picker-options {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.ql-toolbar .ql-picker-item {
    padding: 5px;
    cursor: pointer;
}

.ql-toolbar .ql-picker-item:hover {
    background-color: #e0e0e0;
}

/* Ensure Quill icons are displayed correctly */
.ql-toolbar .ql-stroke {
    fill: none;
    stroke: #333; /* Icon color */
    stroke-width: 2;
}

.ql-toolbar .ql-fill {
    fill: #333; /* Icon color */
}

.ql-toolbar .ql-picker-label::before,
.ql-toolbar .ql-picker-item::before {
    color: #333; /* Dropdown icon color */
}

/* Custom Quill toolbar styles */
#toolbar {
    border: 1px solid #ddd;
    border-radius: 4px;
    background-color: #f9f9f9;
    padding: 5px;
    margin-bottom: 10px;
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
}

#toolbar .ql-formats {
    display: flex;
    gap: 5px;
}

#toolbar button,
#toolbar select {
    border: 1px solid #ddd;
    border-radius: 4px;
    background-color: #fff;
    padding: 5px;
    cursor: pointer;
    font-size: 14px;
}

#toolbar button:hover,
#toolbar select:hover {
    background-color: #e0e0e0;
}

#toolbar button.ql-active {
    background-color: #d0d0d0;
}

#toolbar select {
    padding: 5px 10px;
}

/* Ensure global styles do not affect the slider */
.hero-slider-container,
.hero-slider,
.hero-slider .slide,
.hero-slider .slide img,
.hero-slider .slide-content {
    all: unset; /* Reset all inherited styles */
}

/* Add Category Section */
.add-category-section {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.add-category-section h1 {
    text-align: center;
    margin-bottom: 20px;
    font-size: 24px;
    color: #333;
}

#add-category-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

#add-category-form label {
    font-weight: bold;
    color: #555;
}

#add-category-form input,
#add-category-form button {
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    width: 100%;
    box-sizing: border-box;
}

#add-category-form button {
    background-color: #4CAF50;
    color: white;
    border: none;
    cursor: pointer;
    font-weight: bold;
}

#add-category-form button:hover {
    background-color: #45a049;
}

/* Styles for Category Dropdown */
#news-category {
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    width: 100%;
    box-sizing: border-box;
    background-color: #fff;
    color: #333;
}

#news-category:focus {
    border-color: #4CAF50;
    outline: none;
    box-shadow: 0 0 5px rgba(76, 175, 80, 0.5);
}

#news-category option {
    padding: 10px;
    font-size: 14px;
    color: #333;
}

label[for="news-category"] {
    font-weight: bold;
    color: #555;
    margin-bottom: 5px;
    display: block;
}

/* Styles for News Card Grid and Individual Cards */
.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    padding: 20px;
}

.news-card {
    background-color: none;
    border: 1px solid none;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: none;
}

.news-card-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.news-card-content {
    padding: 15px;
}

.news-card-content h2 {
    font-size: 18px;
    margin: 0 0 10px;
    color: #333;
}

.news-card-content p {
    font-size: 14px;
    color: #555;
    margin: 0 0 15px;
}

.news-card-content .read-more {
    display: inline-block;
    padding: 8px 12px;
    border: 1px solid #EF5A10;
    background-color: none;
    color: #EF5A10;
    text-decoration: none;
    border-radius: 4px;
    font-size: 14px;
    transition: background-color 0.3s ease;
}

.news-card-content .read-more:hover {
    border: 2px solid #d64700;
    background-color: none;
    color: #d64700;
}

.news-card-image-container {
    position: relative;
}

.news-category {
    position: absolute;
    top: 10px;
    left: 10px;
    border: 1px solid #fff;
    background-color: none;
    color: #fff;
    font-size: 12px;
    font-weight: bold;
    padding: 5px 10px;
    border-radius: 4px;
    z-index: 1;
}

.news-date {
    display: flex;
    align-items: center;
    font-size: 12px;
    color: #888;
    margin-bottom: 10px;
    gap: 5px; /* Add spacing between icon and text */
}

.news-date .fa-calendar {
    font-size: 12px;
    color: #888;
}

/* Contact Form and Map */
#contact-section {
    padding: 20px;
    background-color: none;
    text-align: center;
}

.contact-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
}

.contact-form, .contact-info {
    flex: 1 1 45%;
    max-width: 45%;
}

.contact-form form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.contact-form input, .contact-form textarea, .contact-form button {
    padding: 10px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.contact-form button {
    background-color: #007BFF;
    color: white;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s;
}

.contact-form button:hover {
    background-color: #0056b3;
}

.contact-info h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.contact-info p {
    font-size: 16px;
    margin: 5px 0;
}

#map {
    width: 100%;
    height: 400px; /* Ensure the height is explicitly set */
    border: none;
    border-radius: 5px;
    margin-top: 20px;
    box-sizing: border-box; /* Prevent padding from affecting dimensions */
    position: relative; /* Ensure proper positioning */
    overflow: hidden; /* Prevent overflow issues */
    display: block; /* Ensure the map container is displayed */
}

.hero-slider {
    position: relative;
    width: 100%;
    height: 400px; /* Set a fixed height for the slider */
    overflow: hidden;
    background-color: #f9f9f9; /* Fallback background */
}

.slider-container {
    display: flex;
    transition: transform 0.5s ease-in-out;
    height: 100%;
    width: 300%; /* Ensure the container spans all slides */
}

.slide {
    flex: 0 0 100%; /* Each slide takes up full width */
    height: 100%;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-align: center;
}

.slide-content {
    z-index: 2; /* Ensure text is above the image */
    background: rgba(0, 0, 0, 0.5); /* Add a semi-transparent background for readability */
    padding: 20px;
    border-radius: 8px;
}

.slider-controls {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    z-index: 10;
}

.slider-controls button {
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    font-size: 1.5rem;
    border-radius: 5px;
}

.slider-controls button:hover {
    background: rgba(0, 0, 0, 0.8);
}

.about-section {
    padding: 60px 20px;
    background-color: #f9f9f9;
    text-align: center;
}

.about-section .container {
    max-width: 800px;
    margin: 0 auto;
}

.about-section h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 700;
    color: #333;
}

.about-section p {
    font-size: 1.1rem;
    margin-bottom: 40px;
    color: #555;
    line-height: 1.6;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.feature {
    text-align: left;
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.feature i {
    font-size: 2rem;
    color: #007bff;
    margin-bottom: 10px;
}

.feature h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #333;
}

.feature p {
    font-size: 1rem;
    color: #555;
    line-height: 1.5;
}

.responsive-image {
    max-width: 100%;
    height: auto;
    margin-top: 20px;
    border-radius: 8px;
}

.view-more-container {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.view-more-button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #EF5A10;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    font-size: 14px;
    transition: background-color 0.3s ease;
}

.view-more-button:hover {
    background-color: #d64700;
}

.card-section {
    padding: 40px 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.card-grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    width: 100%;
    max-width: 1200px;
}

.card-item {
    background: #fff;
    border-radius: 8px;
    box-shadow: none;
    text-align: center;
    text-decoration: none;
    color: #333;
    padding: 20px;
    transition: box-shadow 0.3s, transform 0.3s;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.card-item img {
    width: 100%;
    height: 140px;
    object-fit: cover;
    margin-bottom: 6px;
    border-radius: 8px 8px 0 0;
    display: block;
}

.card-item:hover {
    transform: translateY(-5px) scale(1.03);
}

/* T-Shirt Claims Table Styles */
.claims-container {
    background: none;
    border-radius: 12px;
    box-shadow: none;
    padding: 32px 24px;
    margin: 32px auto;
    max-width: 1400px; /* wider container */
}
.claims-container h2 {
    text-align: center;
    margin-bottom: 24px;
    font-size: 2rem;
    color: #EF5A10;
    font-weight: 700;
}
.claims-table {
    width: 100%;
    border-collapse: collapse;
    background: none;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: none;
}
.claims-table th, .claims-table td {
    padding: 8px 4px; /* smaller padding */
    border-bottom: 1px solid #eee;
    text-align: left;
    font-size: 13px; /* smaller font */
}
.claims-table th {
    background: #EF5A10;
    color: #fff;
    font-weight: 600;
    font-size: 13px; /* smaller font */
}
.claims-table tr:last-child td {
    border-bottom: none;
}
.claims-table tr:hover {
    background: #f5f5f5;
}

/* Smaller buttons in claims table */
.verify-entry-btn,
.stale-entry-btn,
.unpaid-entry-btn {
    padding: 4px 8px !important;
    font-size: 12px !important;
    border-radius: 3px !important;
}

/* Smaller labels */
.verified-label,
.stale-label,
.unpaid-label {
    font-size: 12px !important;
    margin-left: 6px !important;
}

@media (max-width: 900px) {
    .claims-container {
        padding: 8px 2px;
    }
    .claims-table th, .claims-table td {
        font-size: 11px;
        padding: 6px 2px;
    }
    .verify-entry-btn,
    .stale-entry-btn {
        font-size: 10px !important;
        padding: 3px 6px !important;
    }
    .verified-label,
    .stale-label {
        font-size: 10px !important;
        margin-left: 4px !important;
    }
    .unpaid-label {
        font-size: 10px !important;
        margin-left: 4px !important;
    }
}
