/* Hide scrollbar but maintain functionality */
.modal-info {
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;     /* Firefox */
}

.modal-info::-webkit-scrollbar {
    display: none;  /* Chrome, Safari and Opera */
}

/* Zoom warning styles */
.zoom-warning {
    position: fixed;
    top: 20px;
    right: 20px;
    background: rgba(255, 87, 34, 0.95);
    color: white;
    padding: 12px 20px;
    border-radius: 8px;
    z-index: 2000;
    display: none;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    font-size: 14px;
    max-width: 300px;
    backdrop-filter: blur(5px);
    animation: slideIn 0.3s ease-out;
}

.zoom-warning.show {
    display: flex;
}

.zoom-warning-icon {
    font-size: 20px;
    color: #FFE0B2;
}

.zoom-warning-close {
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    padding: 4px;
    margin-left: auto;
    opacity: 0.8;
    transition: opacity 0.2s;
}

.zoom-warning-close:hover {
    opacity: 1;
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}