	/*
		--- Versionamento ---
		26/03/2025 - Andrey - Primeira versão
		--- Fim Versionamento ---
	*/
   
    #notificacoes {
      position: fixed;
      top: 10px;
      right: 10px;
      width: 50%;
      z-index: 9999;
      display: none;
      text-align: right;
      font-family: monospace;
      max-height: 100vh;
      overflow-y: scroll;
      
    }    
    
    .notificacao {
      background: #f9f9f9;
      border: 1px solid #ccc;
      padding: 10px 30px 10px 10px;
      margin-bottom: 3px;
      position: relative;
      box-shadow: 0 2px 5px rgba(0,0,0,0.1);
      border-radius: 10px;
      text-align: left;
      height: fit-content;
      width: fit-content;      
      margin-left: auto;
      margin-right: 0px;
    }

    .notificacao button img{
		height: 16px;
		opacity: .3;
		transition: .1s;
    }
    
    .notificacao button img:hover{
		opacity: 1;
    }
    

    .notificacao button {
      position: absolute;
      top: 10px;
      right: 10px;
      background: none;
      border: none;
      cursor: pointer;
    }    
    
    
    