
.em-events-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
}
.em-event {
    background: #fff;
    padding: 15px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.em-events-list .em-event {
    background: #fff;
    padding: 15px;
    height: 300px; /* Set fixed height */
    overflow: auto;
    display: flex;
    flex-direction: column;
    justify-content: space-between; /* Space out content vertically */
    border: 1px solid #ddd;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.event-item {
    font-size: 10px !important; /* Adjust this value to your preference */
}
.event-item h4 {
    font-size: 10px !important; /* Adjust size as needed */
	text-decoration: none !important; /* Remove underline */
    line-height: 18px !important; /* Adjust line height */
    font-weight: 300 !important; /* Keep font weight */
}
h3.em-item-title {
    text-decoration: none !important;
    font-size: 16px;
}
/* Target the homepage menu items */
.home .main-menu a {
    color: #000000 !important; /* Black for normal state */
}

/* On hover, menu items should turn deep blue */
.home .main-menu a:hover {
    color: #000080 !important; /* Deep blue (#000080) */
}

/* On active or clicked menu item, it should turn light blue */
.home .main-menu a:active, 
.home .main-menu .current-menu-item a {
    color: #00BFFF !important; /* Light blue (#00BFFF) */
}
/* Full-width background image for the specified section */
.full-background {
    background-size: cover !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
    width: 100vw !important; /* Set full width */
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}
/* Ensure Cart and Checkout Pages fit within the mobile viewport */
@media (max-width: 768px) {
    .woocommerce-cart .shop_table, 
    .woocommerce-checkout form.checkout {
        width: 100% !important;
        overflow-x: hidden !important;
    }

    /* Add padding for improved readability */
    .woocommerce-cart .shop_table, 
    .woocommerce-checkout form.checkout, 
    .woocommerce-checkout .form-row {
        padding: 10px !important;
        box-sizing: border-box;
    }

    /* Prevent tables from expanding beyond viewport */
    .woocommerce-cart table, 
    .woocommerce-checkout table {
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
}
/* Remove extra space below the content */
.content-area, .main-content, .site-content, .entry-content {
    margin-bottom: 0;
    padding-bottom: 0;
}

/* Remove padding from the footer */
.site-footer {
    padding-top: 0;
    margin-top: 0;

/* Target the logo on the home page */
.home .custom-logo {
    width: 161px !important;   /* Set the width to 161px */
    height: 90px !important;   /* Set the height to 90px */
    object-fit: contain !important;   /* Ensures the logo maintains its aspect ratio */
}

/* Additional rule for other pages, if necessary */
.custom-logo {
    width: 161px !important;
    height: 90px !important;
    object-fit: contain !important;
}
.cart-container {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: flex-end;
    padding: 10px 20px;
}

.cart-icon {
    font-size: 22px;
    text-decoration: none;
    color: #000; /* Adjust to match your theme */
    position: relative;
    background: #fff;
    padding: 10px 15px;
    border-radius: 50%;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.cart-count {
    background: red;
    color: white;
    font-size: 14px;
    font-weight: bold;
    border-radius: 50%;
    padding: 4px 8px;
    position: absolute;
    top: -5px;
    right: -10px;
}




















