/* 
Theme Name: Hello Elementor Child
Theme URI: https://github.com/elementor/hello-theme/
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: 1.0.1
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
*/

/*
    Add your custom styles here
*/
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@200..700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,100..900;1,100..900&display=swap');


/* General Styling */
body { 
    font-family: 'Segoe UI', Arial, sans-serif; 
    margin: 0; 
    padding: 10px; 
    background: #fff; 
}


.table-container {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border: 1px solid #eee;
}

.pricing-table {
    min-width: 900px; 
    border-collapse: collapse;
}

/* Row & Column Layout */
.pt-row {
    display: grid;
    grid-template-columns: 2.2fr 1fr 1fr 1fr 1fr;
    border-bottom: 1px solid #eee;
    align-items: center;
}

.pt-row:nth-child(even) { background-color: #f9f9f9; }

.pt-header {
    background: #fafafa;
    font-weight: bold;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    position: sticky;
    top: 0;
    z-index: 10;
}

.pt-col {
    padding: 15px 10px;
    text-align: center;
    font-size: 14px;
    color: #444;
}

/* Feature Column & Icons Alignment Fix */
.pt-col.feature {
    text-align: left;
    color: #333;
    display: flex;
    align-items: center;
    justify-content: space-between; 
    padding-right: 15px;
}

.feature-name {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%; 
}

/* Info Icon Styling */
.info-tooltip {
    position: relative;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    margin-left: 10px;
}

.info-tooltip i {
    color: #00ACBB;
    font-size: 16px;
}

/* Tooltip Box Fix */
.tooltip-text {
    position: absolute;
    left: 25px;
    bottom: 0;
    background: #1f2937;
    color: #fff;
    padding: 10px;
    border-radius: 4px;
    font-size: 11px;
    width: 200px;
    opacity: 0;
    visibility: hidden;
    z-index: 100;
    transition: 0.2s;
}

.info-tooltip:hover .tooltip-text {
    opacity: 1;
    visibility: visible;
}

/* Checkmark Style */
.check { color: #333; font-size: 16px; }

/* Limitation Row Text Fix */
.limitation-row {
    align-items: flex-start !important;
}

.limit-text {
    font-size: 12px;
    line-height: 1.4;
    text-align: left;
    padding-top: 15px;
    white-space: normal;
}

/* Mobile Specific Fixes */
@media screen and (max-width: 600px) {
    .pricing-table {
        min-width: 800px; /* Mobile par width thodi kam taaki zyada scroll na ho */
    }
    .pt-col {
        font-size: 12px;
        padding: 10px 5px;
    }
    .limit-text {
        font-size: 10px;
    }
}