
#header-search-container {
    display: flex; 
    justify-content: center; 
    align-items: center; 
    margin-top: 10px; 
    height: 100%;
  }
  
  #header-search-addon {
    background-color: #444444; 
    color: #fff; 
    border: none;
  }
  
  #fsearch {
    background-color: #444444; 
    color: #fff; 
    border: none
  }
  
  
  
  
  #header-search-group {
    width: 500px; 
    border: 1px solid #444444; 
    border-radius: 5px;
  }
  
  #header-search-result {
    display: block; 
    position: absolute; 
    width: 500px;
  }
  
  @media (max-width: 1280px) {
    #header-search-group, #header-search-result {
      width: 450px;
    }
  }
  
  
  @media (max-width: 1024px) {
    #header-search-group, #header-search-result {
      width: 350px;
    }
  }
  @media (max-width: 900px) {
    #header-search-group, #header-search-result {
      width: 280px;
    }
  }
  @media (max-width: 768px) {
    #header-search-group, #header-search-result {
      width: 350px;
    }
  }
  
  @media (max-width: 480px) {
    #header-search-group, #header-search-result {
      width: 280px;
    }
  }
  

  /* Plugin Grid Außeneinstellungen */
.plugin-grid {
    margin-top: 15px;
}

/* Card-Container */
.plugin-card {
    background: #ffffff;
    border-radius: 6px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.06);
    border: 1px solid #f0f0f0;
    padding: 15px 18px;
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    transition: all 0.2s ease-in-out;
}

.plugin-card:hover {
    box-shadow: 0 4px 14px rgba(0,0,0,0.08);
    transform: translateY(-2px);
}

/* Header */
.plugin-card-header {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

/* Logo/Icon */
.plugin-logo {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: #f7f7f7;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-right: 12px;
    flex-shrink: 0;
}

.plugin-logo img {
    max-width: 100%;
    max-height: 100%;
    display: block;
}

.plugin-logo i {
    font-size: 22px;
    color: #777;
}

/* Titelbereich */
.plugin-title-wrap {
    flex: 1;
    min-width: 0;
}

.plugin-title {
    font-size: 16px;
    font-weight: 600;
    margin: 0;
    color: #333;
}

.plugin-subtitle {
    font-size: 12px;
}

/* Status-Badge */
.plugin-badge {
    font-size: 11px;
    padding: 4px 8px;
    border-radius: 999px;
    font-weight: 600;
    white-space: nowrap;
    margin-left: 8px;
}

.plugin-badge-status {
    border: 1px solid transparent;
}

.plugin-badge-active {
    background: #dff0d8;
    color: #3c763d;
    border-color: #c8e5bc;
}

.plugin-badge-inactive {
    background: #f2dede;
    color: #a94442;
    border-color: #ebcccc;
}

/* Body */
.plugin-card-body {
    font-size: 13px;
    color: #555;
    margin-bottom: 12px;
}

.plugin-card-body p {
    margin: 0;
}

/* Footer */
.plugin-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    flex-wrap: wrap;
    border-top: 1px solid #f2f2f2;
    padding-top: 8px;
    margin-top: auto;
}

/* Meta-Infos links */
.plugin-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    font-size: 11px;
    color: #888;
}

.plugin-meta i {
    margin-right: 4px;
}

/* Buttons rechts */
.plugin-actions {
    margin-left: auto;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

/* Aktiver Card-State: dezenter Rahmen / Akzent */
.plugin-card-active {
    border-color: #3c8dbc;
    box-shadow: 0 2px 10px rgba(60,141,188,0.15);
}

.plugin-card-active .plugin-title {
    color: #3c8dbc;
}

.bg-gray {
    background-color: #f0f0f0 !important;
}