.blurred-container {
    position: relative;
    display: inline-block;
    width: 100%; /* Adjust this as needed for your layout */
}

.blurred-content {
    filter: blur(5px);
    pointer-events: none; /* Prevent interaction */
    opacity: 0.7; /* Make it slightly transparent */
    user-select: none; /* Prevents text selection */
}

.restricted-message {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 10px 15px;
    border-radius: 5px;
    text-align: center;
    font-size: 14px;
    font-weight: bold;
    z-index: 2;
    pointer-events: none; /* Prevent interaction with the message */
    width: 100%; /* Prevent the text from breaking into too many lines */
}
