.eb-ac-modal {
    display: none;
    position: fixed; top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.6);
    z-index: 9999;
  }
  .eb-ac-modal-content {
    background: #fff;
    width: 80%; max-width: 800px;
    margin: 50px auto;
    padding: 20px;
    border-radius: 4px;
    position: relative;
  }
  .eb-ac-close {
    position: absolute;
    right: 15px; top: 10px;
    font-size: 24px;
    cursor: pointer;
  }
  .eb-ac-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    max-height: 60vh;
    overflow-y: auto;
  }
  .eb-ac-thumb {
    width: 100px;
    height: 100px;
    object-fit: cover;
    cursor: pointer;
    border: 2px solid transparent;
  }
  .eb-ac-thumb:hover {
    border-color: #0073aa;
  }
  #eb_ac_load_more {
    display: block;
    margin: 15px auto 0;
    padding: 8px 16px;
    cursor: pointer;
  }
  