/* 
Theme Name: Hello Elementor Child
Theme URI: https://github.com/elementor/hello-theme-child/
Description: Hello Elementor Child is a child theme of Hello Elementor, created by Elementor team
Author: Elementor Team
Author URI: https://elementor.com/
Template: hello-elementor
Version: 2.0.0
Text Domain: hello-elementor-child
License: GNU General Public License v3 or later.
License URI: https://www.gnu.org/licenses/gpl-3.0.html
Tags: flexible-header, custom-colors, custom-menu, custom-logo, editor-style, featured-images, rtl-language-support, threaded-comments, translation-ready
*/
.gt_container-pmba5v .gt_switcher .gt_selected {
     z-index: 1!important;
}

/* Add your custom styles here */
.related-post-title a{
      text-decoration: none !important;
}

.post .wp-post-image {
    max-height: 500px;
    -o-object-fit: cover;
    object-fit: cover;
    width: 100%;
    height: 300px;
}


.is-sticky {
        position: fixed;
        top:0px;
        left: 0;
        right: 0;
        z-index: 9999;
        box-shadow: 0 2px 5px rgba(0,0,0,0.3);
    }


.hfe-nav-menu__layout-horizontal .hfe-nav-menu li{
    border:solid #fff 1.5px;
    border-top:none;
    border-bottom:none;
}

.social-icon .elementor-social-icon-instagram:hover{
	background:#000 !important;
}
.social-icon .elementor-social-icon-instagram{
	background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
}
.social-icon .elementor-icon:hover{
	background-color:#000;
}

.grid-layout .elementor-image-box-wrapper img {
    width: 100% !important;
}

.social-icon .elementor-grid {
    row-gap: 0px !important;
    display: flex !important;
    flex-direction: column !important;
}


mark {
	background: -webkit-linear-gradient(bottom, #ff4e3c 0%, #ff653c 69%, #ff7c3c 100%);
	background: linear-gradient(to top, #ff4e3c 0%, #ff653c 69%, #ff7c3c 100%);
	color: #fff;
	display: inline-block;
	font-weight: 500;
	letter-spacing: 0;
	line-height: 1;
	margin-left: 8px;
	margin-right: -3px;
	padding: 0 6px 1px 5px;
	position: relative;
	-webkit-transform: skew(-14deg);
	-ms-transform: skew(-14deg);
	transform: skew(-14deg);
}

/* table style */ 

 .table-responsive-wrapper {
        max-width: 100%; /* Ensures the wrapper doesn't exceed screen width */
        overflow-x: auto; /* Adds horizontal scroll only when necessary */
        width: 100%;
    }
    
    /* * S T Y L E - T A B L E
     * This class applies the look-and-feel to all your tables.
    */
    .style-table {
        /* Base table properties */
        width: 100%;
        border-collapse: collapse;
        text-align: center;
        font-size: small;
        font-family: Verdana, sans-serif;
        color: #000000;
        min-width: 350px; /* Prevents columns from completely collapsing on small screens */
    }

    .style-table th, 
    .style-table td {
        padding: 10px;
        border: none;
        text-align: center; 
        color: inherit;
        font-size: inherit;
        font-family: inherit;
    }

    /* Primary Header Row Styling */
    .style-table thead tr {
        background-color: #F7470A; /* Orange background for headers */
        color: #ffffff;
    }

    /* Colspan header styling (e.g., "Available Sizes Are :-") */
    .style-table thead th {
        color: #000; /* Specific black color from original inline style */
        font-size: small;
        font-family: Verdana;
        text-align: center;
    }

    /* Body Row Alternating Colors (Odd rows: Gray BG, Black Text) */
    .style-table tbody tr:nth-child(odd) {
        background-color: #C0C0C0; 
        color: #000000;
    }

    /* Body Row Alternating Colors (Even rows: Orange BG, White Text) */
    .style-table tbody tr:nth-child(even) {
        background-color: #F7470A; 
        color: #ffffff;
    }