.agent-plugin {
    position: relative;
    font-family: Arial, sans-serif;
}

.agent-button {
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    z-index: 1000;
}

.agent-button-base {
  border: 1px solid #D3D3D3;    
  cursor: pointer;
  padding: 8px 16px;
  border-radius: 50px;
  height: 30px;
  width: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: background-color 0.3s, color 0.3s;
}

.agent-button-close {
  background-color: transparent;
  color: #616161;
}

.agent-button-close:hover {
  background-color: #e0e0e0;
}

.agent-button-chosen {
  background-color: #e3f2fd !important;
  color: #0d47a1 !important;
}

.panel {
    position: fixed;
    bottom: 70px;
    right: 20px;
    background: white;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    width: 360px;
    max-height: 400px;
    overflow-y: auto;
    transition: all 0.3s ease;
    z-index: 1000;
}

.panel.hidden {
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
}

.panel_section {
    padding: 20px;
}

.grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 10px;
    padding: 15px;
}

.grid-item {
    padding: 15px;
    border: 1px solid #eee;
    border-radius: 8px;
    cursor: pointer;
    text-align: center;
    transition: all 0.2s ease;
}

.grid-item:hover {
    border-color: #2196F3;
}

.grid-item.selected {
    background-color: #e3f2fd;
    border-color: #2196F3;
}

.grid-item h3 {
    margin: 0 0 8px 0;
    font-size: 14px;
    color: #333;
}

.grid-item p {
    margin: 0;
    font-size: 12px;
    color: #666;
}

.div_icon_default_name {
  margin: 0 auto;
  width: 50px; 
  height: 50px;
  background-color: rgb(104, 195, 159);
  border-radius: 12px;
  border-width: 0px;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.display_card_image_thumbnail_img {
  width: 50px; 
  height: 50px;
  border-radius: 12px;
}

.page_selector {
    display: grid;
    grid-column-gap: 5px;
    grid-row-gap: 2px;
    grid-template-columns: REPEAT(auto-fill, minmax(35px, 45px));
}
.page_id_wrapper {height: 16px; min-width: 20px; float: left; text-align:center}
.page_id_wrapper_start {margin-right: 5px}
.page_prefix_a {color: #a6a49c;font-size:16px}
.page_id_a {color: #a6a49c;font-size:16px}
.page_id_a:hover {text-decoration: underline}
.page_id_a_active {color: #a6a49c;font-size:16px; text-decoration: underline}

