        .dark-mode .waripper {
    background-color: #1e1e1e;
    color: #f5f5f5;
}

.dark-mode .grid-waripper {
    background-color: #1e1e1e;
}

.dark-mode .meraicon-bg {
    background-color: #2d2d2d;
}

.dark-mode .meratool-card {
    background-color: #2d2d2d;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.3);
    color: #f5f5f5;
}

.dark-mode .meratool-card:hover {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.3);
}

.dark-mode .card-title-waripper {
    color: #f5f5f5;
}

.dark-mode .card-description {
    color: #aaa;
}
                .waripper {
            padding: 2rem 1rem;
            max-width: 1280px;
            margin: 0 auto;
        }
        .grid-waripper {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1rem;
    margin-bottom: 3rem;
}
        .meraicon-bg {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            border-radius: 0.5rem;
            flex-shrink: 0;
        }
        .meratool-card {
            background-color: white;
            border-radius: 0.5rem;
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
            padding: 1.25rem;
            display: flex;
            align-items: flex-start;
            transition: all 0.3s ease;
            text-decoration: none;
            color: inherit;
        }
        .meratool-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
        }
        .card-waripper-box {
            margin-left: 1rem;
        }
        .card-title-waripper {
            font-weight: 500;
            color: #1f2937;
            margin: 0;
        }
        .card-description {
            font-size: 0.875rem;
            color: #6b7280;
            margin-top: 0.25rem;
        }
        @media (max-width: 768px) {
    .grid-waripper {
        grid-template-columns: repeat(2, minmax(0, 1fr)); /* Ensures columns don't overflow */
        gap: 0.5rem;
        padding: 0 0.5rem;
        width: 100%;
    }
    
    .meratool-card {
        flex-direction: column;
        padding: 0.75rem;
        min-width: 0;
    }
    
    .card-waripper-box {
        margin-left: 0;
        margin-top: 0.5rem;
        width: 100%;
    }
    
    .card-title-waripper, .card-description {
        white-space: normal;
        overflow: visible;
    }
}
body {
    font-family: 'Arial', sans-serif;
    transition: background-color 0.3s, color 0.3s;
    padding-top: 70px;
}
        html, body {
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
}

.avatar-circle {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background-color: #0066ff;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    cursor: pointer;
    margin-left: 10px;
}

.dropdown-menu {
    display: none;
    position: absolute;
    background-color: white;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
    right: 0;
    border-radius: 4px;
}

.dropdown-menu a {
    color: #444;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    text-align: left;
}

.dropdown-menu a:hover {
    background-color: #f1f1f1;
    color: #0066ff;
}

#userAvatarContainer:hover .dropdown-menu {
    display: block;
}

.dark-mode .dropdown-menu {
    background-color: #1e1e1e;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.4);
}

.dark-mode .dropdown-menu a {
    color: #f5f5f5;
}

.dark-mode .dropdown-menu a:hover {
    background-color: #2d2d2d;
}
      #toolsModal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 99;
    pointer-events: none;
    overflow-y: auto;
}

.tool-modal-content {
    position: relative;
    background-color: white;
    margin: 60px auto;
    padding: 20px;
    width: 100%;
    border-radius: 8px;
    animation: fadeIn 0.3s;
    max-height: 80vh;
    overflow-y: auto;
    pointer-events: auto;
}

.dark-mode .tool-modal-content {
    background-color: #1e1e1e;
    color: #f5f5f5;
}

.close-tool-modal {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 24px;
    background: none;
    border: none;
    cursor: pointer;
    color: #444;
}

.dark-mode .close-tool-modal {
    color: #f5f5f5;
}

@keyframes fadeIn {
    from {opacity: 0; transform: translateY(-20px);}
    to {opacity: 1; transform: translateY(0);}
}

.rotate {
    transform: rotate(180deg);
}
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Arial', sans-serif;
            transition: background-color 0.3s, color 0.3s;
        }
        
        body.dark-mode {
            background-color: #121212;
            color: #f5f5f5;
        }
        
        .dark-mode .header {
            background-color: #1e1e1e;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
        }
        
        .dark-mode .nav-links a {
            color: #f5f5f5;
        }
        
        .dark-mode .tools-section {
            color: #f5f5f5;
        }
        
        .dark-mode .icon-button {
            color: #f5f5f5;
        }
        
        .dark-mode .mobile-menu-icon path {
            fill: #f5f5f5;
        }
        
        
        .header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 5px 30px;
    background-color: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    width: 100%;
    transition: background-color 0.3s;

}
        .logo-wripper {
            display: flex;
            align-items: center;
            gap: 15px;
            position: relative;
        }
        
        .logo {
    display: inline-block;
    width: 150px;
    height: 55px;
    background-image: url('https://mera13.com/logo.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    cursor: pointer;
    transition: all 0.3s ease;
    text-indent: -9999px;
    overflow: hidden;
}

                .tools-dropdown {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            background-color: white;
            box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
            z-index: 99;
            padding: 20px;
            max-height: 80vh;
            overflow-y: auto;
        }
        
        .dark-mode .tools-dropdown {
            background-color: #1e1e1e;
            box-shadow: 0 10px 15px rgba(0, 0, 0, 0.3);
        }
        
        .tools-section {
            position: relative;
            cursor: pointer;
        }
        
        .tools-section.active .dropdown-icon {
            transform: rotate(180deg);
        }
        
        .tools-section.active {
            color: #0066ff;
        }
        
        @media (max-width: 768px) {
            .tools-dropdown {
                position: fixed;
                top: 60px;
                left: 0;
                width: 100%;
                max-height: calc(100vh - 60px);
            }

            .tool-modal-content {
        width: 100vw;
        margin: 60px 0 0 0;
        border-radius: 0;
        padding: 15px;
        max-width: none;
        left: 0;
        right: 0;
    }

    body.modal-open {
        overflow: hidden;
        position: fixed;
        width: 100%;
    }
        }
        
        .tools-section {
            display: flex;
            align-items: center;
            gap: 1px;
            margin-left: 20px;
            cursor: pointer;
            color: #444;
            font-weight: 500;
            transition: color 0.3s;
        }
        
        .custom-tool-icon, 
        .dark-mode-icon, 
        .search-icon,
        .dropdown-icon {
            width: 25px;
            height: 25px;

        }
        
        .dropdown-icon {
            transition: transform 0.3s;
        }
        
        
        .icon-group {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-left: 10px;
        }
        
        .icon-button {
            background: none;
            border: none;
            cursor: pointer;
            color: #444;
            transition: color 0.3s;
            padding: 5px;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .icon-button:hover {
            color: #0066ff;
        }
        
        .icon-button:hover svg path {
            fill: #0066ff;
        }
        
        .nav-links {
            display: flex;
            align-items: center;
            gap: 20px;
        }
        
        .nav-links a {
            text-decoration: none;
            color: #444;
            font-weight: 500;
            font-size: 16px;
            transition: color 0.3s;
        }
        
        .nav-links a:hover {
            color: #0066ff;
        }
        
        .cta-button {
            padding: 8px 20px;
            background-color: #0066ff;
            color: white;
            border: none;
            border-radius: 4px;
            font-weight: 500;
            cursor: pointer;
            transition: background-color 0.3s;
        }
        
        .cta-button:hover {
            background-color: #0052cc;
        }
        
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            cursor: pointer;
            padding: 10px;
        }
        
        .mobile-menu-icon {
            width: 25px;
            height: 25px;
        }
        
        .search-box {
            display: none;
            position: absolute;
            right: 0;
            top: 100%;
            z-index: 101;
        }
        
        .desktop-search-box {
            display: none;
            width: 150px;
            margin-left: 10px;
        }
        
        .desktop-search-box input {
            padding: 8px 12px;
            border: 1px solid #ddd;
            border-radius: 25px;
            width: 100%;
            outline: none;
        }
        
        .dark-mode .search-box {
            background: #1e1e1e;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
        }
        
        .dark-mode .desktop-search-box input {
            background-color: #2d2d2d;
            border-color: #444;
            color: #f5f5f5;
        }
        
        .search-active .search-icon-btn {
            display: none;
        }
        
        .search-active .desktop-search-box {
            display: block;
        }
        
        .mobile-search-active .search-icon-btn {
            display: none;
        }
        
        .mobile-search-active .search-box {
            display: block;
        }
        
        @media (max-width: 768px) {
            .header {
                padding: 5px 15px;
                flex-wrap: wrap;
            }
            .logo {
                height: 40px;
                width: 120px;
            }
            .custom-tool-icon, 
        .dark-mode-icon, 
        .search-icon,
        .dropdown-icon {
            width: 20px;
            height: 20px;

        }
            .nav-links {
                display: none;
                width: 35%;
                flex-direction: column;
                gap: 15px;
                padding: 15px;
                margin-left: auto;
                right: 0;
                position: absolute;
                top: 60px;
                background: white;
                box-shadow: -2px 2px 10px rgba(0, 0, 0, 0.1);
            }
            
            .nav-links.active {
                display: flex;
            }
            
            .mobile-menu-btn {
                display: block;
            }

            .icon-group {
                margin-left: auto;
                gap: 3px;
            }
            
            .logo-wripper {
                gap: 3px;
            }
            
            .tools-section {
                margin-left: 3px;
            }
            
         .search-box {
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
            top: 60px;
            border-radius: 100px;
            width: 150px;
            display: none;
           }

         .search-box input {
            padding: 8px 12px;
            border: 1px solid #ddd;
            border-radius: 25px;
            width: 150px;
            outline: none;
           }
        
            .dark-mode .search-box input {
                background-color: #2d2d2d;
                border-color: #444;
                color: #f5f5f5;
            }
            
            .mobile-search-active .search-box {
                display: block;
            }
            
            .dark-mode .nav-links {
                background: #1e1e1e;
                box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
            }
            
            .dark-mode .search-box {
                background: #1e1e1e;
            }
            
            .search-active .icon-button[title="Search"] {
                display: none;
            }
        }
        .drop-area-expdf {
    width: 100%;
    border: 0px dashed white;
    outline: 0.5px dashed white;
    outline-offset: -15px;
    border-radius: 8px;
    padding: 20px;
    background-color: #74BAAC;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    margin: 0 auto;
}
        .drop-area-exyml {
    width: 100%;
    border: 0px dashed white;
    outline: 0.5px dashed white;
    outline-offset: -15px;
    border-radius: 8px;
    padding: 20px;
    background-color: #80B584;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    margin: 0 auto;
}
        .drop-area-exxml {
    width: 100%;
    border: 0px dashed white;
    outline: 0.5px dashed white;
    outline-offset: -15px;
    border-radius: 8px;
    padding: 20px;
    background-color: #4AE371;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    margin: 0 auto;
}
        .drop-area-exwiki {
    width: 100%;
    border: 0px dashed white;
    outline: 0.5px dashed white;
    outline-offset: -15px;
    border-radius: 8px;
    padding: 20px;
    background-color: #FF99CC;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    margin: 0 auto;
}
        .drop-area-extoml {
    width: 100%;
    border: 0px dashed white;
    outline: 0.5px dashed white;
    outline-offset: -15px;
    border-radius: 8px;
    padding: 20px;
    background-color: #BF00BF;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    margin: 0 auto;
}
        .drop-area-exceltotile {
    width: 100%;
    border: 0px dashed white;
    outline: 0.5px dashed white;
    outline-offset: -15px;
    border-radius: 8px;
    padding: 20px;
    background-color: #99CC00;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    margin: 0 auto;
}
        .drop-area-exceltoruby {
    width: 100%;
    border: 0px dashed white;
    outline: 0.5px dashed white;
    outline-offset: -15px;
    border-radius: 8px;
    padding: 20px;
    background-color: #666699;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    margin: 0 auto;
}
        .drop-area-exceltorst {
    width: 100%;
    border: 0px dashed white;
    outline: 0.5px dashed white;
    outline-offset: -15px;
    border-radius: 8px;
    padding: 20px;
    background-color: #FFCC33;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    margin: 0 auto;
}
        .drop-area-exrdf {
    width: 100%;
    border: 0px dashed white;
    outline: 0.5px dashed white;
    outline-offset: -15px;
    border-radius: 8px;
    padding: 20px;
    background-color: #9669FE;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    margin: 0 auto;
}
        .drop-area-exrdfdara {
    width: 100%;
    border: 0px dashed white;
    outline: 0.5px dashed white;
    outline-offset: -15px;
    border-radius: 8px;
    padding: 20px;
    background-color: #FF0099;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    margin: 0 auto;
}
        .drop-area-exqliq {
    width: 100%;
    border: 0px dashed white;
    outline: 0.5px dashed white;
    outline-offset: -15px;
    border-radius: 8px;
    padding: 20px;
    background-color: #CC9966;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    margin: 0 auto;
}
.drop-area-exprob {
    width: 100%;
    border: 0px dashed white;
    outline: 0.5px dashed white;
    outline-offset: -15px;
    border-radius: 8px;
    padding: 20px;
    background-color: #CC6633;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    margin: 0 auto;
}
        .drop-area-expng {
    width: 100%;
    border: 0px dashed white;
    outline: 0.5px dashed white;
    outline-offset: -15px;
    border-radius: 8px;
    padding: 20px;
    background-color: #99FF33;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    margin: 0 auto;
}
        .drop-area-exphp {
    width: 100%;
    border: 0px dashed white;
    outline: 0.5px dashed white;
    outline-offset: -15px;
    border-radius: 8px;
    padding: 20px;
    background-color: #990000;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    margin: 0 auto;
}
        .drop-area-expandas {
    width: 100%;
    border: 0px dashed white;
    outline: 0.5px dashed white;
    outline-offset: -15px;
    border-radius: 8px;
    padding: 20px;
    background-color: #B05F3C;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    margin: 0 auto;
}
        .drop-area-exmwiki {
    width: 100%;
    border: 0px dashed white;
    outline: 0.5px dashed white;
    outline-offset: -15px;
    border-radius: 8px;
    padding: 20px;
    background-color: #B3FF99;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    margin: 0 auto;
}
        .drop-area-exlab {
    width: 100%;
    border: 0px dashed white;
    outline: 0.5px dashed white;
    outline-offset: -15px;
    border-radius: 8px;
    padding: 20px;
    background-color: #6633FF;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    margin: 0 auto;
}
        .drop-area-exmar {
    width: 100%;
    border: 0px dashed white;
    outline: 0.5px dashed white;
    outline-offset: -15px;
    border-radius: 8px;
    padding: 20px;
    background-color: #6600FF;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    margin: 0 auto;
}
        .drop-area-exgic {
    width: 100%;
    border: 0px dashed white;
    outline: 0.5px dashed white;
    outline-offset: -15px;
    border-radius: 8px;
    padding: 20px;
    background-color: #0066FF;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    margin: 0 auto;
}
        .drop-area-exword {
    width: 100%;
    border: 0px dashed white;
    outline: 0.5px dashed white;
    outline-offset: -15px;
    border-radius: 8px;
    padding: 20px;
    background-color: #330066;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    margin: 0 auto;
}
        .drop-area-exlatex {
    width: 100%;
    border: 0px dashed white;
    outline: 0.5px dashed white;
    outline-offset: -15px;
    border-radius: 8px;
    padding: 20px;
    background-color: #330033;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    margin: 0 auto;
}
        .drop-area-exjsline {
    width: 100%;
    border: 0px dashed white;
    outline: 0.5px dashed white;
    outline-offset: -15px;
    border-radius: 8px;
    padding: 20px;
    background-color: #330000;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    margin: 0 auto;
}
        .drop-area-exjson {
    width: 100%;
    border: 0px dashed white;
    outline: 0.5px dashed white;
    outline-offset: -15px;
    border-radius: 8px;
    padding: 20px;
    background-color: #00FFCC;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    margin: 0 auto;
}
.drop-area-exjpg {
    width: 100%;
    border: 0px dashed white;
    outline: 0.5px dashed white;
    outline-offset: -15px;
    border-radius: 8px;
    padding: 20px;
    background-color: #00FF00;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    margin: 0 auto;
}
        .drop-area-exjira {
    width: 100%;
    border: 0px dashed white;
    outline: 0.5px dashed white;
    outline-offset: -15px;
    border-radius: 8px;
    padding: 20px;
    background-color: #00CC99;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    margin: 0 auto;
}
.drop-area-exini {
    width: 100%;
    border: 0px dashed white;
    outline: 0.5px dashed white;
    outline-offset: -15px;
    border-radius: 8px;
    padding: 20px;
    background-color: #00CC66;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    margin: 0 auto;
}
        .drop-area-exhtml {
    width: 100%;
    border: 0px dashed white;
    outline: 0.5px dashed white;
    outline-offset: -15px;
    border-radius: 8px;
    padding: 20px;
    background-color: #00CC00;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    margin: 0 auto;
}
        .drop-area-exfir {
    width: 100%;
    border: 0px dashed white;
    outline: 0.5px dashed white;
    outline-offset: -15px;
    border-radius: 8px;
    padding: 20px;
    background-color: #000000;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    margin: 0 auto;
}
        .drop-area-exdax {
    width: 100%;
    border: 0px dashed white;
    outline: 0.5px dashed white;
    outline-offset: -15px;
    border-radius: 8px;
    padding: 20px;
    background-color: #006666;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    margin: 0 auto;
}
        .drop-area-excsv {
    width: 100%;
    border: 0px dashed white;
    outline: 0.5px dashed white;
    outline-offset: -15px;
    border-radius: 8px;
    padding: 20px;
    background-color: #006633;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    margin: 0 auto;
}
.drop-area-exbbcode {
    width: 100%;
    border: 0px dashed white;
    outline: 0.5px dashed white;
    outline-offset: -15px;
    border-radius: 8px;
    padding: 20px;
    background-color: #006600;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    margin: 0 auto;
}
        .drop-area-exavro {
    width: 100%;
    border: 0px dashed white;
    outline: 0.5px dashed white;
    outline-offset: -15px;
    border-radius: 8px;
    padding: 20px;
    background-color: #003300;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    margin: 0 auto;
}
        .drop-area-exasp {
    width: 100%;
    border: 0px dashed white;
    outline: 0.5px dashed white;
    outline-offset: -15px;
    border-radius: 8px;
    padding: 20px;
    background-color: #003333;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    margin: 0 auto;
}
        .drop-area-exasdoc {
    width: 100%;
    border: 0px dashed white;
    outline: 0.5px dashed white;
    outline-offset: -15px;
    border-radius: 8px;
    padding: 20px;
    background-color: #003366;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    margin: 0 auto;
}
        .drop-area-extex {
    width: 100%;
    border: 0px dashed white;
    outline: 0.5px dashed white;
    outline-offset: -15px;
    border-radius: 8px;
    padding: 20px;
    background-color: #000066;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    margin: 0 auto;
}
        .drop-area-wrapper {
    width: 100%;
    border: 0px dashed white;
    outline: 0.5px dashed white;
    outline-offset: -15px;
    border-radius: 8px;
    padding: 20px;
    background-color: #000033;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    margin: 0 auto;
}
        .drop-area-exsql {
    width: 100%;
    border: 0px dashed white;
    outline: 0.5px dashed white;
    outline-offset: -15px;
    border-radius: 8px;
    padding: 20px;
    background-color: #F9BB16;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    margin: 0 auto;
}
.file-input {
    display: none;
}

.choose-files-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background-color: white;
    color: black;
    border: none;
    border-radius: 4px;
    padding: 10px 10px;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
    margin: 10px auto;
    position: relative;
}

.choose-files-btn:hover {
    background-color: #f0f0f0;
}

.dropdown-wrapper-icon {
    transition: transform 0.3s ease;
    width: 16px;
    height: 16px;
}

.dropdown-wrapper-icon.rotated {
    transform: rotate(180deg);
}

.dropdown-wrapper-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    padding: 8px 0;
    z-index: 100;
    display: none;
    min-width: 240px;
}

.dropdown-wrapper-menu.show {
    display: block;
}

.dropdown-wrapper-item {
    display: flex;
    align-items: center;
    width: 100%;
    padding: 12px 16px;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    gap: 10px;
    color: #333;
}


.dropdown-wrapper-item:hover {
    background-color: #f5f5f5;
}

.dropdown-wrapper-item-text {
    font-size: 14px;
    color: #202124;
}

.pro-badge {
    background-color: #F9BB16;
    border-radius: 12px;
    padding: 2px 8px;
    display: flex;
    align-items: center;
    gap: 4px;
    margin-left: auto;
    font-size: 12px;
    color: #000;
}

.svg-logo-icne {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.helper-text {
    color: white;
    font-size: 16px;
    font-weight: bold;
    margin-top: 8px;
}

.file-icon {
    width: 96px;
    height: 60px;
    margin: 0 auto;
    margin-top: 15px;
}

.button-wrapper-container {
    position: relative;
    display: inline-block;
}
.content-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
    margin: 5 auto;
    padding: 5px;
}

.form-container {
    flex: 1;
    max-width: 800px;
    margin: 0 auto;
}
/*
.ad-space {
    width: 300px;
    min-height: 200px;
    background-color: #f5f5f5;
    border: 1px dashed #ccc;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
}

@media (max-width: 1024px) {
    .ad-space {
        width: 120px;
    }
}
*/
@media (max-width: 768px) {
    .content-wrapper {
        flex-direction: column;
    }
    .form-container {
        order: 2;
        width: 100%;
    }
    /*
    .ad-space.left-ad {
        order: 1;
        width: 100%;
        min-height: 200px;
        margin: 10px 0;
    }
    
    
      
    .ad-space.right-ad {
        order: 3;
        width: 100%;
        min-height: 200px;
        margin: 10px 0;
    }
    */
}
.preview-wrapper {
    display: flex;
    justify-content: space-between;
    width: 100%;
    margin: 20px 0;
    gap: 20px;
}

.wrapper-textdata {
    width: 40%;
    height: 250px;
    margin-left: 20px;
}

.wrapper-textdata textarea {
    width: 100%;
    height: 100%;
    padding: 10px;
    border-radius: 4px;
    resize: none;
    border: 1px solid #ddd;
}

.excel-wrapper {
    width: 30%;
    height: 250px;
    margin-right: 20px;
    background-color: white;
    border-radius: 4px;
    border: 1px solid #ddd;
    overflow: auto;
}
.word-wrapper {
    width: 30%;
    height: 250px;
    margin-right: 20px;
    background-color: white;
    border-radius: 4px;
    border: 1px solid #ddd;
    overflow: auto;
}


.dark-mode .wrapper-textdata textarea {
    background-color: #28282B;
    color: white;
    border-color: #444;
}

.dark-mode .excel-wrapper {
    background-color: #1e1e1e;
    border-color: #444;
}
.dark-mode .word-wrapper {
    background-color: #1e1e1e;
    border-color: #444;
}

@media (max-width: 768px) {
    .preview-wrapper {
        flex-direction: column;
        gap: 10px;
    }
    
    .wrapper-textdata,
    .word-wrapper,
    .excel-wrapper {
        width: 100%;
        margin: 0;
        height: 200px;
    }
}



.output-wrapper-box{
    display: flex;
    flex-direction: row;
    gap: 35px;
    width: 100%;
    box-sizing: border-box;
    margin-left: 20px;
    margin-right: 30px;
}

.output-wrapper {
    width: 35%;
    box-sizing: border-box;
}


.output-box {
    width: 60%;
    box-sizing: border-box;
}

pre {
    background: #f8f9fa;
    padding: 10px;
    border-radius: 5px;
    border: 1px solid #ddd;
    width: 100%;
    height: 300px;
    overflow: auto;
    font-family: monospace;
    white-space: pre-wrap;
    box-sizing: border-box;
}

.action-buttons {
    display: flex;
    flex-wrap: nowrap; /* Prevent wrapping to multiple lines */
    gap: 10px;
    margin-bottom: 20px;
    overflow-x: auto; /* Allow horizontal scrolling if needed */
    padding-bottom: 5px; /* Space for scrollbar */
    scrollbar-width: thin; /* For Firefox */
}

/* Custom scrollbar for Webkit browsers */
.action-buttons::-webkit-scrollbar {
    height: 5px;
}
.action-buttons::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 5px;
}

.action-buttons button {
    padding: 10px 15px;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    flex: 0 0 auto; /* Don't grow or shrink */
    white-space: nowrap; /* Prevent text wrapping */
    min-width: max-content; /* Ensure buttons don't shrink too much */
    box-sizing: border-box;
    transition: transform 0.2s, opacity 0.2s;
}

.action-buttons button:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

/* Button colors remain the same */
.action-buttons button:nth-child(1) { background-color: #28a745; }
.action-buttons button:nth-child(2) { background-color: #007bff; }
.action-buttons button:nth-child(3) { background-color: #dc3545; }
.action-buttons button:nth-child(4) { background-color: skyblue; }
.action-buttons button:nth-child(5) { background-color: orangered; }
.action-buttons button:nth-child(6) { background-color: greenyellow; }


@media (max-width: 768px) {
    .action-buttons {
        gap: 8px;
    }
    .action-buttons button {
        padding: 8px 12px;
        font-size: 13px;
    }
}

._select, ._input {
    width: 50%;
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    margin-bottom: 10px;
}

._label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
}

._checkbox-wrapper {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    cursor: pointer;
}

._checkbox-wrapper ._main {
    position: relative;
    width: 18px;
    height: 18px;
    border: 1px solid #ddd;
    border-radius: 3px;
    margin-right: 8px;
}

._checkbox-wrapper input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

._checkbox-wrapper ._icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: none;
    color: #F9BB16;
    font-size: 12px;
    font-weight: bold;
}

._checkbox-wrapper input[type="checkbox"]:checked ~ ._main ._icon {
  display: block;
}

._tooltip {
    font-size: 14px;
    color: #333;
}

._input-wrapper {
    margin-bottom: 15px;
}
._input-wrapper ._label {
    font-size: 14px;
    color: #333;
    margin-bottom: 5px;
}
._input-wrapper ._input {
    width: 50%;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 14px;
    box-sizing: border-box;
}
._dropdown-wrapper-wrapper {
    margin-bottom: 15px;
}
._dropdown-wrapper-wrapper ._label {
    font-size: 14px;
    color: #333;
    margin-bottom: 5px;
}
._dropdown-wrapper-wrapper ._select {
    width: 50%;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 14px;
    appearance: none;
    background-color: white;
    box-sizing: border-box;
}
._dropdown-wrapper-wrapper ._icon {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
}
@media only screen and (max-width: 768px) {
    .output-wrapper-box {
        flex-direction: column;
        gap: 20px;
        margin-left: 0px;
    }
    
    .output-wrapper, .output-box {
        width: 100%;
    }
    
    ._select, ._input, 
    ._input-wrapper ._input, 
    ._dropdown-wrapper-wrapper ._select {
        width: 100%;
    }
    
    pre {
        height: 250px;
        font-size: 12px;
        padding: 8px;
    }
    
    ._checkbox-wrapper {
        font-size: 14px;
    }
    
    ._label, 
    ._input-wrapper ._label, 
    ._dropdown-wrapper-wrapper ._label {
        font-size: 13px;
    }
}
/* Dark mode styles for output wrapper */
.dark-mode .output-wrapper-box {
    background-color: #1e1e1e;
}

.dark-mode .output-wrapper {
    color: #f5f5f5;
}

.dark-mode .output-box {
    color: #f5f5f5;
}

.dark-mode pre {
    background-color: #28282B;
    color: #f5f5f5;
    border-color: #444;
}

.dark-mode .action-buttons button {
    color: #121212;
}

.dark-mode ._select, 
.dark-mode ._input,
.dark-mode ._input-wrapper ._input,
.dark-mode ._dropdown-wrapper-wrapper ._select {
    background-color: #2d2d2d;
    color: #f5f5f5;
    border-color: #444;
}

.dark-mode ._label,
.dark-mode ._input-wrapper ._label,
.dark-mode ._dropdown-wrapper-wrapper ._label,
.dark-mode ._tooltip {
    color: #f5f5f5;
}

.dark-mode ._checkbox-wrapper ._main {
    border-color: #666;
    background-color: #2d2d2d;
}

.dark-mode ._checkbox-wrapper ._icon {
    color: #F9BB16;
}

/* Dark mode for checkboxes */
.dark-mode ._checkbox-wrapper input[type="checkbox"]:checked ~ ._main {
    background-color: #2d2d2d;
}
        .overlink-wrapper {
    overflow-x: auto;
    padding: 1px;
    margin: 20px;
    scrollbar-width: thin;
    scrollbar-color: #cbd5e1 transparent;
}

.over-link-items {
    display: flex;
    justify-content: flex-start;
    padding: 10px 20px;
    background-color: white;
    width: max-content;
    min-height: 40px; /* Increased from 20px for better touch targets */
    align-items: center;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    border-radius: 8px;
    gap: 8px; /* Space between items */
}

.over-link-items a {
    white-space: nowrap;
    padding: 6px 12px; /* Increased padding for better clickability */
    margin: 0;
    text-decoration: none;
    color: #334155;
    font-size: 12px;
    font-weight: 500;
    border-radius: 15px;
    transition: all 0.3s ease;
    position: relative;
    background-color: #e2e8f0;
    box-shadow: 
        1px 1px 2px rgba(255,255,255,0.8) inset,
        1px 1px 3px rgba(0,0,0,0.2);
    border: 1px solid #cbd5e1;
}

.over-link-items a:hover {
    color: #047857;
    border: 1px solid #10b981;
    box-shadow: 
        0 0 0 2px rgba(16, 185, 129, 0.3),
        1px 1px 2px rgba(255,255,255,0.8) inset,
        1px 1px 3px rgba(0,0,0,0.2);
    transform: translateY(-1px);
}

.over-link-items a.active {
    background-color: #10b981;
    color: white;
    border: 1px solid #059669;
    box-shadow: 
        0 2px 3px rgba(0,0,0,0.2) inset,
        0 1px 2px rgba(255,255,255,0.4);
}

/* Dark Mode Styles */
.dark-mode .overlink-wrapper {
    scrollbar-color: #4a5568 transparent;
}

.dark-mode .over-link-items {
    background-color: #1e1e1e;
    box-shadow: 0 2px 5px rgba(0,0,0,0.3);
}

.dark-mode .over-link-items a {
    color: #e2e8f0;
    background-color: #2d3748;
    border-color: #4a5568;
    box-shadow: 
        1px 1px 2px rgba(0,0,0,0.2) inset,
        1px 1px 3px rgba(0,0,0,0.3);
}

.dark-mode .over-link-items a:hover {
    color: #a7f3d0;
    border-color: #10b981;
    box-shadow: 
        0 0 0 2px rgba(16, 185, 129, 0.3),
        1px 1px 2px rgba(0,0,0,0.2) inset,
        1px 1px 3px rgba(0,0,0,0.3);
}

.dark-mode .over-link-items a.active {
    background-color: #10b981;
    color: #fff;
    border-color: #059669;
    box-shadow: 
        0 2px 3px rgba(0,0,0,0.3) inset,
        0 1px 2px rgba(255,255,255,0.1);
}

/* Hide scrollbar when not scrolling */
.overlink-wrapper::-webkit-scrollbar {
    height: 6px;
}

.overlink-wrapper::-webkit-scrollbar-thumb {
    background-color: #cbd5e1;
    border-radius: 3px;
}

.dark-mode .overlink-wrapper::-webkit-scrollbar-thumb {
    background-color: #4a5568;
}

/* Add these styles to your existing CSS */

.subtitle {
    font-size: 1.2rem;
    color: #555;
    max-width: 800px;
    margin: 20px auto;
    padding: 0 20px;
    text-align: center;
}

.features-wrapper {
    margin: 40px 20px;
}

.features-wrapper-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 20px;
    margin: 20px;
}

.airtical-box {
    background: white;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    margin: 20px;
}

.airtical-logo {
    font-size: 2rem;
    color: #D51F26;
    margin-bottom: 15px;
}

.airtical-h1 {
    font-size: 1.2rem;
    margin-bottom: 15px;
}

/* Dark Mode Styles */
.dark-mode .subtitle {
    color: #aaa;
}

.dark-mode .airtical-box {
    background: #2d2d2d;
    box-shadow: 0 2px 8px rgba(0,0,0,0.3);
    color: #f5f5f5;
}

.dark-mode .airtical-h1 {
    color: #f5f5f5;
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
    .overlink-wrapper {
    overflow-x: auto;
    padding: 1px;
    margin: 2px;
    }
    .subtitle {
        font-size: 1rem;
        padding: 0 15px;
        margin: 15px auto;
    }
    
    .features-wrapper {
        margin: 20px 15px;
    }
    
    .features-wrapper-grid {
        grid-template-columns: 1fr;
        margin: 15px;
        gap: 15px;
    }
    
    .airtical-box {
        margin: 15px;
        padding: 15px;
    }

}

@media (max-width: 480px) {
    .subtitle {
        font-size: 0.9rem;
        padding: 0 10px;
    }
    
    .features-wrapper{
        margin: 15px 10px;
    }
    
    .airtical-box {
        margin: 10px;
        padding: 12px;
    }
    
    .airtical-logo {
        font-size: 1.5rem;
        margin-bottom: 10px;
    }
    
    .airtical-h1 {
        font-size: 1rem;
        margin-bottom: 10px;
    }
}
/* Add this to your existing CSS */

.how-it-works {
    margin: 20px;
    padding: 20px;
    text-align: center; /* Center the content */
}

.how-it-works-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px; /* Space between ol and ul */
    margin: 0 auto;
    max-width: 900px;
}

.how-it-works ol, 
.how-it-works ul {
    text-align: left; /* Align list text to left */
    display: inline-block; /* Make lists behave like blocks but centered */
    margin: 0;
    padding: 0 0 0 30px; /* Proper indentation */
}

.how-it-works ol {
    /* Styling for ordered list */
    list-style-type: decimal;
    min-width: 300px;
}

.how-it-works ul {
    /* Styling for unordered list */
    list-style-type: disc;
    min-width: 300px;
}

.how-it-works li {
    margin-bottom: 10px;
    line-height: 1.5;
}

/* Dark mode styles */
.dark-mode .how-it-works ol,
.dark-mode .how-it-works ul {
    color: #f5f5f5;
}

/* Mobile responsive styles */
@media (max-width: 768px) {
    .how-it-works-container {
        flex-direction: column;
        gap: 20px;
    }
    
    .how-it-works ol,
    .how-it-works ul {
        min-width: auto;
        width: 100%;
        padding: 0 0 0 25px;
    }
}
.drop-area-wcsv {
    width: 100%;
    border: 0px dashed white;
    outline: 0.5px dashed white;
    outline-offset: -15px;
    border-radius: 8px;
    padding: 20px;
    background-color: #B9264F;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    margin: 0 auto;
}
.drop-area-wact {
    width: 100%;
    border: 0px dashed white;
    outline: 0.5px dashed white;
    outline-offset: -15px;
    border-radius: 8px;
    padding: 20px;
    background-color: #74138C;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    margin: 0 auto;
}
.drop-area-wascdoc {
    width: 100%;
    border: 0px dashed white;
    outline: 0.5px dashed white;
    outline-offset: -15px;
    border-radius: 8px;
    padding: 20px;
    background-color: #0000CE;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    margin: 0 auto;
}
.drop-area-wasci {
    width: 100%;
    border: 0px dashed white;
    outline: 0.5px dashed white;
    outline-offset: -15px;
    border-radius: 8px;
    padding: 20px;
    background-color: #1F88A7;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    margin: 0 auto;
}
.drop-area-wbbcode {
    width: 100%;
    border: 0px dashed white;
    outline: 0.5px dashed white;
    outline-offset: -15px;
    border-radius: 8px;
    padding: 20px;
    background-color: #4A9586;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    margin: 0 auto;
}
.drop-area-wasp {
    width: 100%;
    border: 0px dashed white;
    outline: 0.5px dashed white;
    outline-offset: -15px;
    border-radius: 8px;
    padding: 20px;
    background-color: #D73E68;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    margin: 0 auto;
}
.drop-area-wavro {
    width: 100%;
    border: 0px dashed white;
    outline: 0.5px dashed white;
    outline-offset: -15px;
    border-radius: 8px;
    padding: 20px;
    background-color: #B300B3;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    margin: 0 auto;
}
.drop-area-wfir {
    width: 100%;
    border: 0px dashed white;
    outline: 0.5px dashed white;
    outline-offset: -15px;
    border-radius: 8px;
    padding: 20px;
    background-color: #FF2DFF;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    margin: 0 auto;
}
.drop-area-wdax {
    width: 100%;
    border: 0px dashed white;
    outline: 0.5px dashed white;
    outline-offset: -15px;
    border-radius: 8px;
    padding: 20px;
    background-color: #8ED6EA;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    margin: 0 auto;
}
.drop-area-whtml {
    width: 100%;
    border: 0px dashed white;
    outline: 0.5px dashed white;
    outline-offset: -15px;
    border-radius: 8px;
    padding: 20px;
    background-color: #FF2DFF;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    margin: 0 auto;
}
.drop-area-wini {
    width: 100%;
    border: 0px dashed white;
    outline: 0.5px dashed white;
    outline-offset: -15px;
    border-radius: 8px;
    padding: 20px;
    background-color: #8ED6EA;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    margin: 0 auto;
}
.drop-area-wjira {
    width: 100%;
    border: 0px dashed white;
    outline: 0.5px dashed white;
    outline-offset: -15px;
    border-radius: 8px;
    padding: 20px;
    background-color: #DFB4A4;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    margin: 0 auto;
}
.drop-area-wjson {
    width: 100%;
    border: 0px dashed white;
    outline: 0.5px dashed white;
    outline-offset: -15px;
    border-radius: 8px;
    padding: 20px;
    background-color: #CFE7E2;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    margin: 0 auto;
}
.drop-area-wlatex {
    width: 100%;
    border: 0px dashed white;
    outline: 0.5px dashed white;
    outline-offset: -15px;
    border-radius: 8px;
    padding: 20px;
    background-color: #D6C485;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    margin: 0 auto;
}
.drop-area-wline {
    width: 100%;
    border: 0px dashed white;
    outline: 0.5px dashed white;
    outline-offset: -15px;
    border-radius: 8px;
    padding: 20px;
    background-color: #1F88A7;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    margin: 0 auto;
}