/**
 * BVFI24 Alle Geschäftsstellen Widget Styles
 * Modernes Design für externe Einbettung
 */

/* Reset und Basis-Styles */
.all-gs-widget * {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

.all-gs-widget {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #1f2937;
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    width: 100%;
    max-width: none;
    margin: 0;
}

/* Dark Theme */
.all-gs-widget.dark {
    background: #111827;
    color: #f9fafb;
}

/* Loading State */
.all-gs-widget-loading {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    text-align: center;
}

.all-gs-widget-spinner {
    width: 40px;
    height: 40px;
    border: 3px solid #e5e7eb;
    border-top: 3px solid #6b7280;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 16px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.all-gs-widget-loading p {
    color: #6b7280;
    font-size: 14px;
}

/* Error State */
.all-gs-widget-error {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    text-align: center;
}

.all-gs-widget-error-icon {
    width: 48px;
    height: 48px;
    color: #ef4444;
    margin-bottom: 16px;
}

.all-gs-widget-error p {
    color: #6b7280;
    font-size: 14px;
}

/* Header Section */
.all-gs-widget-header {
    position: relative;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 40px 32px;
    text-align: center;
}

.dark .all-gs-widget-header {
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
}

.all-gs-widget-header-content {
    max-width: 600px;
    margin: 0 auto;
}

.all-gs-widget-title {
    font-size: 32px;
    font-weight: 700;
    color: #374151;
    margin-bottom: 8px;
    line-height: 1.2;
}

.dark .all-gs-widget-title {
    color: #f9fafb;
}

.all-gs-widget-subtitle {
    font-size: 16px;
    color: #6b7280;
    font-weight: 400;
}

.dark .all-gs-widget-subtitle {
    color: #d1d5db;
}

/* Search Section */
.all-gs-widget-search {
    padding: 24px 32px;
    background: #f8fafc;
    border-bottom: 1px solid #e2e8f0;
}

.dark .all-gs-widget-search {
    background: #1e293b;
    border-color: #334155;
}

.all-gs-widget-search-container {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    gap: 12px;
}

.all-gs-widget-search-input-wrapper {
    position: relative;
    flex: 1;
}

.all-gs-widget-search-icon {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    color: #9ca3af;
    pointer-events: none;
}

.all-gs-widget-search-input {
    width: 100%;
    padding: 12px 16px 12px 48px;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    font-size: 16px;
    background: #ffffff;
    transition: all 0.2s ease;
}

.dark .all-gs-widget-search-input {
    background: #374151;
    border-color: #4b5563;
    color: #f9fafb;
}

.all-gs-widget-search-input:focus {
    outline: none;
    border-color: #6b7280;
    box-shadow: 0 0 0 3px rgba(107, 114, 128, 0.1);
}

.all-gs-widget-search-btn {
    padding: 12px 24px;
    background: linear-gradient(135deg, #6b7280 0%, #4b5563 100%);
    color: #ffffff;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.all-gs-widget-search-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 15px -3px rgba(107, 114, 128, 0.3);
}

/* Content Section */
.all-gs-widget-content {
    padding: 32px;
}

/* Grid Layout */
.all-gs-widget-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 32px;
}

/* Card Styles */
.all-gs-widget-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    min-height: 400px;
}

.dark .all-gs-widget-card {
    background: #1f2937;
    border-color: #374151;
}

.all-gs-widget-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.all-gs-widget-card-header {
    padding: 24px 24px 0;
    text-align: center;
}

.all-gs-widget-logo, .all-gs-widget-detail-logo {
    width: 160px;
    height: 160px;
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #e2e8f0;
}

.dark .all-gs-widget-logo, .dark .all-gs-widget-detail-logo {
    background: #374151;
    border-color: #4b5563;
}

.all-gs-widget-logo img, .all-gs-widget-detail-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.all-gs-widget-logo-placeholder {
    width: 160px;
    height: 160px;
    margin: 0 auto 16px;
    /* Leerer Bereich für bündige Ausrichtung */
}

.all-gs-widget-logo-placeholder svg {
    display: none;
}

.all-gs-widget-card-content {
    padding: 0 24px 24px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.all-gs-widget-card-title {
    font-size: 18px;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 8px;
    line-height: 1.3;
}

.all-gs-widget-card-description {
    font-size: 14px;
    color: #6b7280;
    line-height: 1.5;
    margin-bottom: 12px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    word-wrap: break-word;
}

.dark .all-gs-widget-card-description {
    color: #d1d5db;
}

.dark .all-gs-widget-card-title {
    color: #f9fafb;
}

/* Status Badge für Geschäftsstellen in Gründung */
.all-gs-widget-status-badge {
    margin-bottom: 8px;
}

.all-gs-widget-badge {
    display: inline-flex;
    align-items: center;
    padding: 4px 8px;
    background: #fef3c7;
    color: #92400e;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.025em;
}

.dark .all-gs-widget-badge {
    background: #451a03;
    color: #fbbf24;
}

.all-gs-widget-badge-icon {
    width: 12px;
    height: 12px;
    margin-right: 4px;
    flex-shrink: 0;
}



.all-gs-widget-card-contact {
    margin-bottom: 20px;
}

.all-gs-widget-contact-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px;
    background: #f8fafc;
    border-radius: 8px;
    font-size: 14px;
    color: #374151;
}

.dark .all-gs-widget-contact-item {
    background: #374151;
    color: #d1d5db;
}

.all-gs-widget-icon {
    width: 16px;
    height: 16px;
    color: #6b7280;
    flex-shrink: 0;
}

.all-gs-widget-card-actions {
    text-align: center;
    margin-top: auto;
    padding-top: 16px;
}

.all-gs-widget-detail-btn {
    padding: 10px 20px;
    background: linear-gradient(135deg, #6b7280 0%, #4b5563 100%);
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.all-gs-widget-detail-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(107, 114, 128, 0.3);
}

/* Empty State */
.all-gs-widget-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    text-align: center;
}

.all-gs-widget-empty-icon {
    width: 64px;
    height: 64px;
    color: #9ca3af;
    margin-bottom: 16px;
}

.all-gs-widget-empty p {
    color: #6b7280;
    font-size: 16px;
}

/* Pagination */
.all-gs-widget-pagination {
    padding: 24px 32px;
    background: #f8fafc;
    border-top: 1px solid #e2e8f0;
}

.dark .all-gs-widget-pagination {
    background: #1e293b;
    border-color: #334155;
}

.all-gs-widget-pagination-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.all-gs-widget-pagination-btn {
    padding: 8px 16px;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    color: #374151;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 4px;
}

.dark .all-gs-widget-pagination-btn {
    background: #374151;
    border-color: #4b5563;
    color: #d1d5db;
}

.all-gs-widget-pagination-btn:hover {
    background: #f3f4f6;
    border-color: #d1d5db;
}

.dark .all-gs-widget-pagination-btn:hover {
    background: #4b5563;
    border-color: #6b7280;
}

.all-gs-widget-pagination-current {
    padding: 8px 16px;
    background: #6b7280;
    color: #ffffff;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
}

.all-gs-widget-pagination-pages {
    display: flex;
    gap: 4px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .all-gs-widget-header {
        padding: 32px 24px;
    }
    
    .all-gs-widget-title {
        font-size: 24px;
    }
    
    .all-gs-widget-search {
        padding: 20px 24px;
    }
    
    .all-gs-widget-search-container {
        flex-direction: column;
    }
    
    .all-gs-widget-content {
        padding: 24px;
    }
    
    .all-gs-widget-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    
    .all-gs-widget-pagination {
        padding: 20px 24px;
    }
    
    .all-gs-widget-pagination-nav {
        flex-wrap: wrap;
        gap: 8px;
    }
}

@media (max-width: 480px) {
    .all-gs-widget {
        border-radius: 12px;
    }
    
    .all-gs-widget-header {
        padding: 24px 20px;
    }
    
    .all-gs-widget-title {
        font-size: 20px;
    }
    
    .all-gs-widget-search {
        padding: 16px 20px;
    }
    
    .all-gs-widget-content {
        padding: 20px;
    }
    
    .all-gs-widget-card {
        border-radius: 12px;
    }
    
    .all-gs-widget-card-header {
        padding: 20px 20px 0;
    }
    
    .all-gs-widget-card-content {
        padding: 0 20px 20px;
    }
    
    .all-gs-widget-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
} 

/* Detail View Styles */
.all-gs-widget-detail-header {
    margin-bottom: 24px;
}

.all-gs-widget-back-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    background: #f3f4f6;
    border: none;
    border-radius: 8px;
    color: #374151;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    margin-top: 16px;
    margin-left: 16px;
}

.all-gs-widget-back-btn:hover {
    background: #e5e7eb;
    transform: translateX(-2px);
}

.dark .all-gs-widget-back-btn {
    background: #374151;
    color: #d1d5db;
}

.dark .all-gs-widget-back-btn:hover {
    background: #4b5563;
}

.all-gs-widget-back-btn svg {
    width: 16px;
    height: 16px;
}

.all-gs-widget-detail-content {
    background: #ffffff;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.dark .all-gs-widget-detail-content {
    background: #1f2937;
}

.all-gs-widget-detail-header-section {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 24px;
    padding-bottom: 20px;
    border-bottom: 1px solid #f3f4f6;
}

.dark .all-gs-widget-detail-header-section {
    border-color: #374151;
}

.all-gs-widget-detail-logo {
    width: 120px;
    height: 120px;
    background: #f8fafc;
    border-radius: 12px;
    padding: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #e2e8f0;
    flex-shrink: 0;
}

.dark .all-gs-widget-detail-logo {
    background: #374151;
    border-color: #4b5563;
}

.all-gs-widget-detail-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.all-gs-widget-detail-info {
    flex: 1;
}

.all-gs-widget-detail-title {
    font-size: 24px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 12px;
    line-height: 1.2;
}

.dark .all-gs-widget-detail-title {
    color: #f9fafb;
}

.all-gs-widget-detail-description,
.all-gs-widget-detail-contact {
    margin-bottom: 24px;
}

.all-gs-widget-detail-description h2,
.all-gs-widget-detail-contact h2 {
    font-size: 18px;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 12px;
}

.dark .all-gs-widget-detail-description h2,
.dark .all-gs-widget-detail-contact h2 {
    color: #f9fafb;
}

.all-gs-widget-detail-description p {
    font-size: 16px;
    line-height: 1.6;
    color: #6b7280;
}

.dark .all-gs-widget-detail-description p {
    color: #d1d5db;
}

.all-gs-widget-detail-contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    color: #6b7280;
}

.dark .all-gs-widget-detail-contact-item {
    color: #d1d5db;
}

/* Hero Section für Detail View */
.all-gs-widget-hero {
    position: relative;
    height: 300px;
    overflow: hidden;
    border-radius: 16px 16px 0 0;
}

.all-gs-widget-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

.all-gs-widget-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
}

.all-gs-widget-hero-content {
    position: relative;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    text-align: center;
}

.all-gs-widget-hero-text {
    color: white;
}

.all-gs-widget-hero-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 8px;
    line-height: 1.2;
}

.all-gs-widget-hero-subtitle {
    font-size: 18px;
    opacity: 0.9;
}

/* Business Info Section */
.all-gs-widget-business-info {
    background: #ffffff;
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 24px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.dark .all-gs-widget-business-info {
    background: #1f2937;
}

.all-gs-widget-business-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

.all-gs-widget-business-avatar {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #6b7280 0%, #4b5563 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    font-weight: 700;
}

.all-gs-widget-business-details h2 {
    font-size: 24px;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 4px;
}

.dark .all-gs-widget-business-details h2 {
    color: #f9fafb;
}

.all-gs-widget-business-details p {
    color: #6b7280;
    font-size: 14px;
}

.dark .all-gs-widget-business-details p {
    color: #d1d5db;
}

.all-gs-widget-business-description {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid #e5e7eb;
}

.dark .all-gs-widget-business-description {
    border-color: #374151;
}

.all-gs-widget-description-text {
    color: #6b7280;
    line-height: 1.6;
}

.dark .all-gs-widget-description-text {
    color: #d1d5db;
}

/* Section Styles */
.all-gs-widget-section {
    background: #ffffff;
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 24px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.dark .all-gs-widget-section {
    background: #1f2937;
}

.all-gs-widget-section-title {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 20px;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 20px;
}

.dark .all-gs-widget-section-title {
    color: #f9fafb;
}

.all-gs-widget-section-title svg {
    width: 24px;
    height: 24px;
    color: #6b7280;
}

/* Leiter Section */
.all-gs-widget-leiter {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.all-gs-widget-leiter-card {
    background: #f8fafc;
    border-radius: 12px;
    padding: 20px;
    border: 1px solid #e2e8f0;
}

.dark .all-gs-widget-leiter-card {
    background: #374151;
    border-color: #4b5563;
}

.all-gs-widget-leiter-content {
    display: flex;
    gap: 20px;
}

.all-gs-widget-leiter-left {
    display: flex;
    gap: 16px;
    flex: 1;
}

.all-gs-widget-leiter-avatar {
    width: 160px;
    height: 160px;
    border-radius: 12px;
    overflow: hidden;
    flex-shrink: 0;
    background: #e5e7eb;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dark .all-gs-widget-leiter-avatar {
    background: #4b5563;
}

.all-gs-widget-leiter-avatar-img {
    width: 160px;
    height: 160px;
    border-radius: 12px;
    object-fit: contain;
    flex-shrink: 0;
}

.all-gs-widget-avatar-placeholder {
    width: 48px;
    height: 48px;
    color: #9ca3af;
}

.all-gs-widget-leiter-info h3 {
    font-size: 18px;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 4px;
}

.dark .all-gs-widget-leiter-info h3 {
    color: #f9fafb;
}

.all-gs-widget-leiter-info p {
    font-size: 14px;
    color: #6b7280;
    margin-bottom: 2px;
}

.dark .all-gs-widget-leiter-info p {
    color: #d1d5db;
}

.all-gs-widget-leiter-company {
    font-weight: 500;
    color: #6b7280 !important;
}

.all-gs-widget-leiter-industry {
    color: #6366f1 !important;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 0.5px;
}

.all-gs-widget-leiter-description {
    flex: 1;
    padding-left: 20px;
    border-left: 1px solid #e5e7eb;
}

.dark .all-gs-widget-leiter-description {
    border-color: #4b5563;
}

.all-gs-widget-leiter-description p {
    color: #6b7280;
    line-height: 1.6;
    font-size: 14px;
}

.dark .all-gs-widget-leiter-description p {
    color: #d1d5db;
}

/* Vorstände Section */
.all-gs-widget-vorstaende {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 20px;
}

.all-gs-widget-vorstand-card {
    background: #f8fafc;
    border-radius: 12px;
    padding: 24px;
    border: 1px solid #e2e8f0;
    display: flex;
    gap: 20px;
}

.dark .all-gs-widget-vorstand-card {
    background: #374151;
    border-color: #4b5563;
}

.all-gs-widget-vorstand-avatar {
    width: 144px;
    height: 144px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
    background: #e5e7eb;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dark .all-gs-widget-vorstand-avatar {
    background: #4b5563;
}

.all-gs-widget-vorstand-avatar-img {
    width: 144px;
    height: 144px;
    border-radius: 8px;
    object-fit: contain;
    flex-shrink: 0;
}

.all-gs-widget-vorstand-info {
    flex: 1;
}

.all-gs-widget-vorstand-info h4 {
    font-size: 16px;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 4px;
}

.dark .all-gs-widget-vorstand-info h4 {
    color: #f9fafb;
}

.all-gs-widget-vorstand-info h3 {
    font-size: 14px;
    font-weight: 500;
    color: #6b7280;
    margin-bottom: 4px;
}

.dark .all-gs-widget-vorstand-info h3 {
    color: #d1d5db;
}

.all-gs-widget-vorstand-info p {
    font-size: 12px;
    color: #6b7280;
    margin-bottom: 2px;
}

.dark .all-gs-widget-vorstand-info p {
    color: #d1d5db;
}

.all-gs-widget-vorstand-industry {
    color: #6366f1 !important;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 11px;
    letter-spacing: 0.5px;
}

/* Branchenbuch Section */
.all-gs-widget-bb-search {
    margin-bottom: 20px;
}

.all-gs-widget-bb-search input {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 14px;
    background: #ffffff;
    transition: all 0.2s ease;
}

.dark .all-gs-widget-bb-search input {
    background: #374151;
    border-color: #4b5563;
    color: #f9fafb;
}

.all-gs-widget-bb-search input:focus {
    outline: none;
    border-color: #6b7280;
    box-shadow: 0 0 0 3px rgba(107, 114, 128, 0.1);
}

.all-gs-widget-bb-entries {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 16px;
    margin-bottom: 20px;
}

.all-gs-widget-bb-card {
    background: #f8fafc;
    border-radius: 8px;
    padding: 16px;
    border: 1px solid #e2e8f0;
}

.dark .all-gs-widget-bb-card {
    background: #374151;
    border-color: #4b5563;
}

.all-gs-widget-bb-company {
    font-size: 16px;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 4px;
}

.dark .all-gs-widget-bb-company {
    color: #f9fafb;
}

.all-gs-widget-bb-category {
    font-size: 12px;
    color: #6366f1;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 8px;
    letter-spacing: 0.5px;
}

.all-gs-widget-bb-description {
    font-size: 14px;
    color: #6b7280;
    line-height: 1.5;
    margin-bottom: 12px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.dark .all-gs-widget-bb-description {
    color: #d1d5db;
}

.all-gs-widget-bb-details {
    display: flex;
    flex-direction: column;
    gap: 4px;
    font-size: 12px;
    color: #6b7280;
}

.dark .all-gs-widget-bb-details {
    color: #d1d5db;
}

.all-gs-widget-bb-website {
    color: #6366f1;
    text-decoration: none;
}

.all-gs-widget-bb-website:hover {
    text-decoration: underline;
}