/* GeoReader Notch Public Styles */

.georeader-notch {
    position: fixed;
    z-index: 9999;
    padding: 12px 20px;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Inter', 'Noto Sans Arabic', sans-serif;
    font-size: 14px;
    line-height: 1.4;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    max-width: 90vw;
}

/* Positions */
.georeader-top-left { top: 20px; left: 20px; }
.georeader-top-right { top: 20px; right: 20px; }
.georeader-top-center { top: 20px; left: 50%; transform: translateX(-50%); }
.georeader-bottom-left { bottom: 20px; left: 20px; }
.georeader-bottom-right { bottom: 20px; right: 20px; }
.georeader-bottom-center { bottom: 20px; left: 50%; transform: translateX(-50%); }

/* RTL Support */
.georeader-notch.rtl {
    direction: rtl;
    text-align: right;
}

/* Components */
.georeader-icon {
    font-size: 16px;
    display: inline-block;
}

.georeader-pulse {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    display: inline-block;
    position: relative;
}

.georeader-pulse::after {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    border-radius: 50%;
    border: 2px solid currentColor;
    opacity: 0;
    animation: pulse-ring 2s infinite;
}

/* Animations */
@keyframes pulse-ring {
    0% { transform: scale(0.5); opacity: 1; }
    100% { transform: scale(1.5); opacity: 0; }
}

.georeader-fade-slide {
    animation: fadeSlideIn 0.8s ease-out forwards;
    opacity: 0;
    transform: translateY(20px);
}

@keyframes fadeSlideIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .georeader-notch {
        padding: 10px 15px;
        font-size: 12px;
        border-radius: 30px;
    }
    .georeader-top-left, .georeader-top-right, .georeader-bottom-left, .georeader-bottom-right {
        left: 10px;
        right: 10px;
        transform: none;
        width: auto;
    }
}