/* 
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
*/


.short-link-box {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 15px 0;
    direction: rtl;
}

.short-link-box input {
    padding: 8px 12px;
    font-size: 14px;
    border: 1px solid #ccc;
    border-radius: 6px;
    width: 70%;
    background-color: #f9f9f9;
    transition: border-color 0.3s ease;
}

.short-link-box input:focus {
    border-color: #0073aa;
    outline: none;
}

.tooltip-wrapper {
    position: relative;
    display: inline-block;
}

.tooltip-wrapper button {
    padding: 8px 14px;
    font-size: 14px;
    background-color: #0073aa;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.tooltip-wrapper button:hover {
    background-color: #005f8d;
}

.tooltip-text {
    visibility: hidden;
    opacity: 0;
    position: absolute;
    top: -35px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #333;
    color: #fff;
    padding: 6px 10px;
    border-radius: 4px;
    font-size: 12px;
    white-space: nowrap;
    transition: opacity 0.3s ease;
    z-index: 10;
}

.tooltip-wrapper:focus-within .tooltip-text,
.tooltip-wrapper:active .tooltip-text {
    visibility: visible;
    opacity: 1;
}
