/*
Theme Name: Hello Elementor Child
Theme URI: https://elementor.com/hello-theme/
Description: Child theme for Hello Elementor
Author: Your Name
Author URI: https://yourwebsite.com
Template: hello-elementor
Version: 1.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, featured-images, rtl-language-support, threaded-comments, translation-ready
*/

/* Add your custom styles below this line */

/* Global Background Color */
html {
    background-color: #F4FAF1 !important;
    min-height: 100%;
}

body {
    background-color: #F4FAF1 !important;
    min-height: 100%;
}

/* Global Montserrat Font Family */
* {
    font-family: "Montserrat", sans-serif;
}

/* Single Post Page Padding */
body.single div[data-elementor-type="single"] {
    padding-top: 150px;
}

@media (max-width: 768px) {
    body.single div[data-elementor-type="single"] {
        padding-top: 90px;
    }
}

/* jQuery UI Tooltip Styles */
.ui-tooltip {
    padding: 8px 12px;
    position: absolute;
    z-index: 9999;
    max-width: 300px;
    background: #333;
    color: #fff;
    border-radius: 4px;
    font-size: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.3);
    line-height: 1.4;
}

.ui-tooltip-content {
    padding: 0;
}