* {
    margin: 0;
    padding: 0;
  }
  
  html {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    scroll-behavior: smooth;
    overscroll-behavior-y: contain;
  }
  
  body {
    overflow-x: hidden;
    background: #000;
    color: #eaeaea;
    font: 300 1.1em 'Lato', Helvetica Neue, Helvetica, Arial;
    font-display: swap;
    overscroll-behavior-y: contain; /* disable refresh */
    scrollbar-width: none; /* For Firefox */
    -ms-overflow-style: none; /* For IE and Edge */
    overflow: -moz-scrollbars-none; /* For older Firefox */
    touch-action: auto;
    zoom: 1.0;
  }
  
  /* input { visibility: hidden; position: fixed; top: -100%; } */
  input[type="checkbox"] {
    visibility: hidden;
    position: fixed;
    top: -100px;
  }
  input[type="radio"] {
    visibility: hidden;
    position: fixed;
    top: -100px;
  }
  input:focus {
    border: none;
    outline: none;
  }
  input[type="file"] {
    background: #333;
    border: none;
    width: 50px;
    position: relative;
    left: 0;
    top: 30px;
    display: none;
    transform: scale(0);
  }
  
  :root {
    --c: #02ffc4;
  }
  
  a, a:link, a:visited, a:hover {
    color: #15e6f9;
    outline: none;
    text-decoration: none;
  }
  
  li {
    list-style: none;
  }
  
  i {
    font-style: normal;
  }
  
  ::-webkit-scrollbar {
    width: 0px;
    height: 0px;
  }
  ::-webkit-scrollbar-track {
    width: 0px;
    background: transparent;
  }
  ::-webkit-scrollbar-thumb {
    width: 0px;
    background: transparent;
  }
  ::-webkit-scrollbar-corner {
    width: 0px;
    background: transparent;
  }
  ::-webkit-scrollbar {
    display: none;
  }
  
  ::-webkit-selection, ::-moz-selection, ::selection {
    background-color: rgb(3, 180, 74);
    color: white;
  }
  
  /* --- Logged Out Layout ------------------------- */
  #spinner {
    position: fixed;
    top: 0;
    left: 0;
    height: 4px;
    width: 100%;
    z-index: 99999;
    background: rgb(0, 180, 255);
    animation: loading 1.7s infinite;
  }
  
  @keyframes loading {
    from { transform: translate(-100%, 0); }
    50% { transform: translate(0, 0); }
    to { transform: translate(100%, 0); }
  }
  
  #whenSignedOut {
    text-align: center;
  }
  
  button {
    border: none;
    outline: none;
    background: #00a6b2;
    padding: 10px 20px;
    color: #fff;
    border-radius: 5px;
    margin: 5px;
    cursor: pointer;
  }
  
  input {
    font-size: 20px;
    width: 230px;
    background: #0b0b0b;
    color: #eee;
    box-shadow: none;
    border: none;
    outline: none;
    padding: 10px;
    margin: 1px;
    border-radius: 10px;
  }
  
  .glogin {
    padding: 20px 0px;
    width: 100%;
    font-size: 15px;
  }
  
  #signInForm, #signUpForm {
    position: fixed;
    width: 250px;
    left: calc(50% - 124px);
    top: 20%;
    border-radius: 10px;
    background: #000000;
    cursor: pointer;
  }
  
  #signUpForm {
    top: 50%;
    transform: translate(0%, -1000%);
    z-index: 9;
  }
  
  .sign {
    position: fixed;
    top: 45%;
    width: 250px;
    left: calc(50% - 124px);
  }
  
  /* End of Logged Out --------------------------- */
  /* ------------- General Layout Panel ---------------------- */
  .logo {
    position: relative;
    top: -3px;
    left: 2px;
  }
  
  .p {
    position: absolute;
    cursor: pointer;
    display: block;
    text-align: right;
    padding: 10px;
    right: 15px;
  }
  
  .btn {
    width: 25%;
    padding-top: 15px;
    cursor: pointer;
  }
  
  #bar {
    position: fixed;
    height: 60px;
    width: 100%;
    bottom: 0px;
    background: #23272a;
    text-align: left;
    border-radius: 10px;
    transition: 0.2s;
    z-index: 2;
    display: flex;
    justify-content: space-around;
    text-align: center;
    flex-wrap: nowrap;
  }
  
  #panel {
    position: fixed;
    height: 200px;
    width: 100%;
    bottom: -200px;
    background: #316585;
    text-align: left;
    border-radius: 15px;
    transition: 0.2s;
    z-index: 99999;
  }
  
  .of {
    transform: translate(0, 300%);
  }
  
  #userDetails {
    position: absolute;
    top: 15px;
    left: 20px;
  }
  
  #userDetails p {
    position: relative;
    font-size: 11px;
    top: 10px;
  }
  
  #signOutBtn {
    position: absolute;
    bottom: 0px;
    padding: 10px;
    left: 0;
    cursor: pointer;
  }
  
  /* === End of Panel ------------------ */
  /* ------------------ New Note */
  .new-btn {
    position: relative;
    float: right;
    bottom: 70px;
    right: 10px;
    padding: 5px;
    cursor: pointer;
  }
  
  /* ---------- End of New Note */
  #notes {
    position: relative;
    width: 100%;
    height: 100%;
    overflow-y: scroll;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding-top: 50px;
    padding-bottom: 80px;
  }
  
  .loading {
    content: "n+";
    position: fixed;
    font-size: 5rem;
    color: #f5f9f819;
    font-weight: 600;
    z-index: 0;
    top: 10%;
    animation: loading 1.2s infinite;
  }
  
  @keyframes loading {
    from { transform: translate(-100%, 0); }
    50% { transform: translate(0, 0); }
    to { transform: translate(100%, 0); }
  }
  
  .load-msg {
    position: fixed;
    font-size: 1.8rem;
    color: #f5f8f94c;
    z-index: 0;
    top: 60%;
    width: 100%;
    text-align: center;
    animation: fliker 1.2s infinite;
  }
  
  @keyframes fliker {
    from { opacity: 1; }
    50% { opacity: .4; }
    to { opacity: 1; }
  }
  
  .post {
    position: fixed;
    border-radius: 10px;
    background: #293034;
    transform: translate(-100%, 0);
    z-index: 8 !important;
  }
  
  .note {
    position: relative;
    background: #202426;
    border-radius: 5px;
    overflow: hidden;
    margin: 1%;
    width: 48%;
    height: 250px;
    float: left;
    opacity: 1;
    transition: opacity 0.3s ease-in-out;
    
  }
  
 
  
  .om .note:after {
    display: none;
  }
  
  #newNote, .on {
    position: fixed;
    top: 0;
    right: 0;
    width: 100% !important;
    height: 100% !important;
    max-height: 100%;
    overflow-y: scroll;
    margin: 0px;
    z-index: 10;
    opacity: 0.999999;
  }
  
  /* Updated from textarea to contenteditable div */
  .clickable-links {
    font: 300 1.0em 'Lato', Helvetica Neue, Helvetica, Arial;
    color: #eaeaea;
    overflow-wrap: break-word;
    white-space: pre-wrap; /* Preserve line breaks like textarea */
    outline: none;
    padding: 15px;
    overflow-y: auto; /* Allow scrolling */
  }
  
  #newNote .clickable-links, .on .clickable-links {
    height: calc(100% - 225px); /* Match previous textarea height */
    font: 300 1.2em 'Lato', Helvetica Neue, Helvetica, Arial;
  }
  
  .clickable-links:empty:before {
    content: "note..";
    font-size: 2rem;
    color: #cccccc1f;
    font-weight: 200;
  }
  
  input::placeholder {
    color: #cccccc1f;
  }
  
  .note-img {
    width: 108%;
    overflow-x: scroll;
    display: flex;
    height: auto;
    width: 100%;
  }
  
  .on .note-img {
    height: 150px;
  }
  
  img, .image {
    cursor: pointer;
    height: 150px;
    border-radius: 10px;
    filter: blur(0px);
  }
  
  .ok {
    position: fixed;
    top: 0%;
    width: 100%;
    height: auto !important;
    z-index: 999;
    border-radius: 10px;
    border-bottom: 1000px solid #000000c7;
  }
  
  img.preview {
    height: 150px !important;
    width: auto !important;
    left: 0;
  }
  
  .refresh {
    position: absolute;
    z-index: 999999;
    right: 0px;
    padding: 10px;
    bottom: 0px;
    width: 35px;
    font-size: 10px;
  }
  
  #previewImages {
    height: 150px;
  }
  
  #previewImages:before, .on .note-img::before {
    content: "images";
    position: absolute;
    font-size: 3rem;
    color: #cccccc1f;
    padding: 30px;
    z-index: -1;
  }
  
  .new {
    position: fixed;
    right: 0;
    width: 50px;
    height: 50px;
    bottom: 50px;
    padding: 15px;
    border-radius: 50%;
    z-index: 9;
    rotate: -90deg;
  }
  
  #pw-box {
    position: absolute;
    top: 80px;
    left: 10%;
    width: 80%;
    text-align: center;
  }
  
  #refreshButton {
    width: 100px;
    padding: 20px 20px;
  }
  
  /* Note Buttons */
  .buttons-container {
    position: fixed;
    z-index: 99;
    bottom: 0;
    width: 100%;
    justify-content: space-evenly;
    display: flex;
    font-size: 9px;
    text-align: center;
  }
  
  .delet, .add-img, .copy, .back {
    width: 25%;
    height: 45px;
    background: #001e211e;
    padding-top: 5px;
  }
  
  .delet:before, .add-img:before, .copy:before, .back:before {
    width: 100%;
    display: block;
  }
  
  .delet:before {
    content: url("data:image/svg+xml;utf8, <svg width='28px' height='28px' viewBox='0 0 24 24' version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' fill='white'><path d='M20,5 C20.5523,5 21,5.44772 21,6 C21,6.55228 20.5523,7 20,7 L19.0001,7 L18.9975,7.07129 L18.9975,7.07129 L18.0638,20.1425 C17.9891,21.1891 17.1182,22 16.0689,22 L7.93116,22 C6.88189,22 6.011,21.1891 5.93624,20.1425 L5.00258,7.07129 C5.00088,7.04738 5.00002,7.02361 5,7 L4,7 C3.44772,7 3,6.55228 3,6 C3,5.44772 3.44772,5 4,5 L20,5 Z M14,2 C14.5523,2 15,2.44772 15,3 C15,3.55228 14.5523,4 14,4 L10,4 C9.44772,4 9,3.55228 9,3 C9,2.44772 9.44772,2 10,2 L14,2 Z' > </path> </svg> ");
  }
  
  .add-img:before {
    content: url("data:image/svg+xml;utf8, <svg fill='white' width='30px' height='30px' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'><path d='m9 13 3-4 3 4.5V12h4V5c0-1.103-.897-2-2-2H4c-1.103 0-2 .897-2 2v12c0 1.103.897 2 2 2h8v-4H5l3-4 1 2z'></path><path d='M19 14h-2v3h-3v2h3v3h2v-3h3v-2h-3z'></path></svg> ");
  }
  
  .copy:before {
    content: url("data:image/svg+xml;utf8, <svg fill='white' width='30px' height='30px' viewBox='0 0 24 24' version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' ><path d='M19,2 C20.1046,2 21,2.89543 21,4 L21,16 C21,17.1046 20.1046,18 19,18 L17,18 L17,20 C17,21.1046 16.1046,22 15,22 L5,22 C3.89543,22 3,21.1046 3,20 L3,8 C3,6.89543 3.89543,6 5,6 L7,6 L7,4 C7,2.89543 7.89543,2 9,2 L19,2 Z M10,15 L8,15 C7.44772,15 7,15.4477 7,16 C7,16.51285 7.38604429,16.9355092 7.88337975,16.9932725 L8,17 L10,17 C10.5523,17 11,16.5523 11,16 C11,15.48715 10.613973,15.0644908 10.1166239,15.0067275 L10,15 Z M19,4 L9,4 L9,6 L15,6 C16.1046,6 17,6.89543 17,8 L17,16 L19,16 L19,4 Z M12,11 L8,11 C7.44772,11 7,11.4477 7,12 C7,12.5523 7.44772,13 8,13 L12,13 C12.5523,13 13,12.5523 13,12 C13,11.4477 12.5523,11 12,11 Z'> </path></svg> ");
    transform: rotate(180deg);
  }
  
  .back:before {
    content: url("data:image/svg+xml;utf8, <svg fill='white' width='30px' height='30px' viewBox='0 0 24 24' version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' ><path d='M15.0606,5.2826 L20.7174,10.9395 C21.3032,11.5252 21.3032,12.475 20.7174,13.0608 L15.0606,18.7176 C14.4748,19.3034 13.525,19.3034 12.9392,18.7176 C12.3535,18.1318 12.3535,17.1821 12.9392,16.5963 L16.0354,13.5001 L4.5,13.5001 C3.67157,13.5001 3,12.8285 3,12.0001 C3,11.1717 3.67157,10.5001 4.5,10.5001 L16.0354,10.5001 L12.9392,7.40392 C12.3535,6.81814 12.3535,5.86839 12.9392,5.2826 C13.525,4.69682 14.4748,4.69682 15.0606,5.2826 Z'> </path> </svg> ");
    transform: rotate(180deg);
  }
  
  .delete-image-btn {
    position: relative;
  }
  
  .delete-image-btn:after {
    content: url("data:image/svg+xml;utf8, <svg width='20px' height='20px' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg' fill='white'><path d='M11.414 10l6.293-6.293a1 1 0 10-1.414-1.414L10 8.586 3.707 2.293a1 1 0 00-1.414 1.414L8.586 10l-6.293 6.293a1 1 0 101.414 1.414L10 11.414l6.293 6.293A.998.998 0 0018 17a.999.999 0 00-.293-.707L11.414 10z' ></path></svg>");
    background: #7b7b7b3f;
    position: absolute;
    left: -40px;
    cursor: pointer;
    z-index: 99;
    border-radius: 50%;
    padding: 10px;
    line-height: 0;
  }
  
  /* Note Buttons End */
  #img-btn {
    position: fixed;
    bottom: 0px;
    z-index: 999999;
    right: 9px;
    padding: 15px;
  }
  
  .c-msg {
    position: fixed;
    top: 45%;
    text-align: center;
    font-size: 15px;
    font-weight: 400;
    color: #00e5ff;
    background: #00b19f;
    padding: 10px;
    border-radius: 10px;
    width: 60%;
    left: 20%;
  }
  
  .see {
    width: 20%;
    height: 100%;
  }
  
  /* Options Panel Start */
  .dots {
    position: fixed;
    color: #fff;
    padding: 10px;
    left: 0;
    z-index: 9999;
    background: #ffffff21;
    border-radius: 50%;
    line-height: 30px;
  }
  
  .close {
    position: fixed;
    height: 100%;
    width: 50%;
    left: -50%;
    z-index: 999999;
  }
  
  #m {
    position: fixed;
    height: 100%;
    width: 50%;
    left: 100%;
    font-size: 22px;
    border-radius: 20px;
    overflow: hidden;
    background: #101217;
    z-index: 9999999999;
    transition: .2s;
    will-change: transform;
  }
  
  #panel2 {
    position: relative;
    height: 100%;
    width: 100%;
    overflow-y: scroll;
    padding-bottom: 50px;
  }
  
  .options {
    cursor: pointer;
    padding: 7px;
    position: relative;
    right: 0;
    top: 10px;
    display: block;
    padding-right: 90px;
    text-align: right;
  }
  
  .options:before {
    content: "";
    position: absolute;
    width: 20px;
    height: 20px;
    top: 10px;
    right: 13px;
    border-radius: 50%;
    background-color: #5f5f5f;
    transition: .2s;
    will-change: transform;
    scale: 0;
    z-index: 2;
  }
  
  .options:after {
    content: "";
    position: absolute;
    height: 17px;
    width: 40px;
    top: 12px;
    right: 20px;
    border-radius: 17px;
    transition: .2s;
    background: rgb(255 255 255 / 18%);
    z-index: 1;
  }
  
  #link {
    position: fixed;
    bottom: 0px;
    right: 0;
    width: 100%;
    padding-bottom: 4px;
    padding-top: 10px;
    font-size: 15px;
    text-align: center;
    z-index: 9;
    background: #101217;
    cursor: pointer;
  }
  
  #link i {
    font-size: 10px;
  }
  
  /* Updated Styles for Previews and Inactivity */
  .c-msg {
    color: green;
    font-size: 0.8em;
    margin-top: 5px;
  }
  
  .link-preview {
    margin-top: 5px;
    font-size: 0.9em;
  }
  
  .link-preview a {
    color: #1a73e8;
    text-decoration: underline;
  }
  
  .image.blurred {
    filter: blur(5px);
    transition: filter 0.3s;
  }
  
  .clickable-links.obfuscated {
    color: transparent;
    text-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
    transition: all 0.3s;
  }
  
  /* Options Panel End */
  
  /* Checkbox Effects */
  #cek-i:checked ~ #notes .note .clickable-links {
    -webkit-text-security: circle;
    -moz-text-security: circle;
    text-security: circle;
  }
  #cek-i:checked ~ #notes .note .note-img .image {
    filter: blur(15px);
  }
  #cek-i:checked ~ .post .image {
    filter: blur(15px);
  }
  
  #cek-x:checked ~ .post {
    transform: translate(0%, -0%);
  }
  #cek-x:checked ~ .new {
    rotate: 90deg;
  }
  
  #cek-sign:checked ~ #signUpForm {
    transform: translate(0%, 0%);
  }
  
  #cek-p:checked ~ #panel {
    transform: translate(0, -100%);
  }
  
  #cek-m:checked ~ #m {
    transform: translate(-100%, -0%);
  }
  #cek-m:checked ~ .close {
    transform: translate(100%, -0%);
  }
  
  #cek-1:checked ~ #notes .note {
    width: 31%;
    height: 150px;
  }
  #cek-1:checked ~ #notes .image {
    height: 50px;
  }
  #cek-1:checked ~ #notes .on .image {
    height: 150px;
  }
  
  #cek-2:checked ~ #notes .note {
    width: 48%;
    height: 250px;
  }
  #cek-3:checked ~ #notes .note {
    width: 49%;
    height: 50px;
    margin: 1px;
    border-radius: 5px; 
    word-wrap: none;
  }
  #cek-3:checked ~ #notes .note .image {
   display:none;
  }
  #cek-3:checked ~ #notes .on .image {
    display:block;
   }
  
  #cek-4:checked ~ #notes {
    background: #151515;
  }
  #cek-4:checked ~ #notes .note {
    background: #000;
  }
  #cek-4:checked ~ #notes .note:after {
    box-shadow: 2px -13px 16px #000 inset;
  }
  
  #cek-5:checked ~ #notes {
    background: #000000;
  }
  #cek-5:checked ~ #newNote {
    background: #202426;
  }
  #cek-5:checked ~ #notes .note {
    background: #202426;
  }
  #cek-5:checked ~ #notes .note:after {
    box-shadow: 2px -13px 16px #202426 inset;
  }
  
  #cek-6:checked ~ #notes {
    background: #000000;
  }
  #cek-6:checked ~ #newNote {
    background: #293034;
  }
  #cek-6:checked ~ #notes .note {
    background: #293034;
  }
  
  #cek-7:checked ~ #notes {
    background: #000000;
  }
  #cek-7:checked ~ #newNote {
    background: #101217;
  }
  #cek-7:checked ~ #notes .note {
    background: #101217;
  }
  #cek-7:checked ~ #notes .note:after {
    box-shadow: 2px -13px 16px #101217 inset;
  }
  
  #cek-8:checked ~ #notes {
    background: #000000;
  }
  #cek-8:checked ~ #newNote {
    background: #0099a4;
  }
  #cek-8:checked ~ #notes .note {
    background: #0099a4;
  }
  #cek-8:checked ~ #notes .note:after {
    box-shadow: 2px -13px 16px #0099a4ac inset;
  }
  
  #cek-9:checked ~ #notes {
    background: #000000;
  }
  #cek-9:checked ~ #newNote {
    background: #80A2CF;
  }
  #cek-9:checked ~ #notes .note {
    background: #80A2CF;
  }
  #cek-9:checked ~ #notes .note:after {
    box-shadow: 2px -13px 16px #80A2CF inset;
  }
  
  #cek-10:checked ~ #notes {
    background: #000000;
  }
  #cek-10:checked ~ #newNote {
    background: #00b19f;
  }
  #cek-10:checked ~ #notes .note {
    background: #00b19f;
  }
  #cek-10:checked ~ #notes .note:after {
    box-shadow: 2px -13px 16px #00b19f inset;
  }
  
  #cek-11:checked ~ #notes {
    background: #000000;
  }
  #cek-11:checked ~ #newNote {
    background: #316585;
  }
  #cek-11:checked ~ #notes .note {
    background: #316585;
  }
  #cek-11:checked ~ #notes .note:after {
    box-shadow: 2px -13px 16px #316585 inset;
  }
  
  #cek-12:checked ~ #notes {
    background: #000000;
  }
  #cek-12:checked ~ #newNote {
    background: #f06292;
  }
  #cek-12:checked ~ #notes .note {
    background: #f06292;
  }
  #cek-12:checked ~ #notes .note:after {
    box-shadow: 2px -13px 16px #f06292 inset;
  }
  
  /* Updated Font Sizes for Contenteditable */
  #cek-20:checked ~ #notes .note .clickable-links {
    font: 300 .8em 'Lato', Helvetica Neue, Helvetica, Arial;
  }
  
  #cek-21:checked ~ #notes .note .clickable-links {
    font: 300 1.0em 'Lato', Helvetica Neue, Helvetica, Arial;
  }
  
  #cek-22:checked ~ #notes .note .clickable-links {
    font: 300 1.1em 'Lato', Helvetica Neue, Helvetica, Arial;
  }
  #cek-22:checked ~ #notes .on .clickable-links {
    font: 300 1.2em 'Lato', Helvetica Neue, Helvetica, Arial;
  }
  
  #cek-23:checked ~ #notes .note .clickable-links {
    font: 300 1.2em 'Lato', Helvetica Neue, Helvetica, Arial;
  }
  #cek-23:checked ~ #notes .on .clickable-links {
    font: 400 1.3em 'Lato', Helvetica Neue, Helvetica, Arial;
  }
  
  /* Checkbox Toggle Indicators */
  #cek-1:checked ~ #m #panel2 .c1:before,
  #cek-2:checked ~ #m #panel2 .c2:before,
  #cek-3:checked ~ #m #panel2 .c3:before,
  #cek-4:checked ~ #m #panel2 .c4:before,
  #cek-5:checked ~ #m #panel2 .c5:before,
  #cek-6:checked ~ #m #panel2 .c6:before,
  #cek-7:checked ~ #m #panel2 .c7:before,
  #cek-8:checked ~ #m #panel2 .c8:before,
  #cek-9:checked ~ #m #panel2 .c9:before,
  #cek-10:checked ~ #m #panel2 .c10:before,
  #cek-11:checked ~ #m #panel2 .c11:before,
  #cek-12:checked ~ #m #panel2 .c12:before,
  #cek-13:checked ~ #m #panel2 .c13:before,
  #cek-14:checked ~ #m #panel2 .c14:before,
  #cek-15:checked ~ #m #panel2 .c15:before,
  #cek-20:checked ~ #m #panel2 .c20:before,
  #cek-21:checked ~ #m #panel2 .c21:before,
  #cek-22:checked ~ #m #panel2 .c22:before,
  #cek-23:checked ~ #m #panel2 .c23:before {
    transform: translate(-140%, 0%);
    background-color: #15e6f9;
    scale: 1;
  }

 

 
  
  
  
  .image.blurred {
    filter: blur(5px);
    transition: filter 0.3s;
  }
 
  .c-msg {
    color: green;
    font-size: 0.8em;
    margin-top: 5px;
  }

  .note-content {
    width: 100%;
    min-height: 100px;
    padding: 10px;
    margin: 0;
    border: none;
    background: transparent;
    color: inherit;
    font-size: inherit;
    font-family: inherit;
    line-height: 1.5;
    outline: none;
    white-space: pre-wrap;
  }

  .note-content[data-placeholder]:empty:before {
    content: attr(data-placeholder);
    color: #555;
    font-style: italic;
  }

 
  .blurred {
    filter: blur(5px);
    transition: filter 0.3s ease;
    -webkit-text-security: circle;
    -moz-text-security: circle;
    text-security: circle;
  }
  
  .obfuscated {
    filter: blur(5px);
    pointer-events: none;
    transition: filter 0.3s ease;
  }
  
  .c-msg {
    position: absolute;
    background: #000;
    color: #fff;
    padding: 5px;
  }
  
  

  