.btn-modal-new {
      padding: 12px 24px;
      font-size: 16px;
      border: none;
      border-radius: 3px;
      background: #00AEFF;
      color: #fff;
      cursor: pointer;
    }

@media (max-width: 900px) {
    .btn-modal-new {
        margin-bottom: 10px;
    }
}

    .overlay-new {
      position: fixed;
      top: 0; left: 0;
      width: 100vw;
      height: 100vh;
      background: rgba(0, 0, 0, 0.6);
      display: none;
      align-items: center;
      justify-content: center;
      z-index: 1000;
    }

    .modal-new {
      background: #1F201F;
      width: 90%;
      max-width: 565px;
      border-radius: 3px;
      box-shadow: 0 10px 30px rgba(0,0,0,0.3);
      overflow: hidden;
      animation: fadeIn 0.3s ease;
      display: flex;
      flex-direction: column;
      max-height: 80vh;
      position: relative;
    }

    .modal-header-new {
      color: #00AEFF;  
      padding: 16px 24px;
      font-size: 20px;
      font-weight: bold;
      border-bottom: 1px solid #eeeeee17;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .modal-content-new {
      padding: 16px 24px;
      overflow-y: auto;
      flex-grow: 1;
      scrollbar-width: thin;
      scrollbar-color: #00AEFF transparent;
    }

    .modal-content-new::-webkit-scrollbar {
      width: 8px;
    }
    .modal-content-new::-webkit-scrollbar-thumb {
      background-color: #00AEFF;
      border-radius: 8px;
    }
    .modal-content-new::-webkit-scrollbar-thumb:hover {
      background-color: #00AEFF;
    }
    .modal-content-new::-webkit-scrollbar-track {
      background: transparent;
    }

    .modal-close-new {
      background: none;
      border: none;
      font-size: 40px;
      color: #00AEFF;
      cursor: pointer;
      line-height: 1;
    }

    @keyframes fadeIn {
      from { opacity: 0; transform: scale(0.95); }
      to   { opacity: 1; transform: scale(1); }
    }

    /* Templates ocultas */
    .template-modal-new {
      display: none;
    }