  /* GDPR Floating Widget Styles */
  .gdpr-widget {
    position: fixed;
    left: 20px;
    bottom: 20px;
    z-index: 9999;
    font-family: Arial, sans-serif;
    display: flex;
    flex-direction: column;
    gap: 10px; /* 按钮之间的间距 */
  }
  
  .gdpr-main-button {
    background-color: #2e7d32;
    color: white;
    border: none;
    border-radius: 50px;
    padding: 12px 20px;
    cursor: pointer;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    font-weight: bold;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
  }
  
  /* 目录按钮样式 - 使用不同的背景颜色 */
  .catalogue-button {
    background-color: #1976d2; 
      text-decoration: none; /* 去掉下划线 */
/* 蓝色调，与Cookie按钮的绿色区分 */
  }
  
  .gdpr-main-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.25);
  }
  
  .gdpr-main-button.catalogue-button:hover {
    background-color: #0d47a1; /* 目录按钮hover时的深色 */
  }
  
  .gdpr-main-button:not(.catalogue-button):hover {
    background-color: #1b5e20; /* Cookie按钮hover时的深色 */
  }
  
  .gdpr-options {
    display: none;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    padding: 15px;
    margin-top: 10px;
    width: 220px;
  }
  
  .gdpr-options a {
    display: block;
    color: #333;
    text-decoration: none;
    padding: 8px 12px;
    margin: 5px 0;
    border-radius: 4px;
    transition: all 0.2s;
  }
  
  .gdpr-options a:hover {
    background-color: #f5f5f5;
    color: #2e7d32;
  }
  
  .gdpr-options.show {
    display: block;
    animation: fadeIn 0.3s ease;
  }
  
  @keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
  }
  
  /* Cookie icon */
  .cookie-icon {
    margin-right: 8px;
    width: 16px;
    height: 16px;
  }
  
  /* 目录图标 */
  .catalogue-icon {
    margin-right: 8px;
    width: 16px;
    height: 16px;
  }
