  /* Table of Contents
================================
1. Not Allowed Styles
================================ */
.bznfilepond-notallowed {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 90px;
    background: linear-gradient(135deg, #f9d29a 0%, #f8a488 100%);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    font-size: 16px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s;
  }
  
  .bznfilepond-notallowed:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
  }
  
  .bznfilepond-notallowed .bznfilepond-icon {
    width: 70px;
    height: 70px;
    background-image: url('/wp-content/plugins/fusepond/public/assets/not-allowed.gif');
    background-size: cover;
    background-position: center;
    margin-bottom: 10px;
  }
  
  .bznfilepond-notallowed p {
    margin: 0;
    font-weight: 600;
    color: #fff;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
  }
  
  .bznfilepond-notallowed a {
    color: #fff;
    text-decoration: none;
    transition: all 0.3s;
  }
  
  .bznfilepond-notallowed a:hover {
    text-decoration: underline;
    opacity: 0.8;
  }

  