/* Energy Bill Analyzer - Style CSS */

/* Główny kontener */
.eba-container {
    width:80% !important;
    margin: 0 auto;
    padding: 40px;
    /*font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;*/
    font-family:'Inter', sans-serif;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    
}
p.eba-offer-supplier {
    margin-left: 10px;
    font-family: 'Inter';
    font-style: italic;
    text-decoration: underline;
}
button.eba-option-btn {
    font-size: medium;
}
.eba-offer-detail div {
    color: white !important;
}
button.eba-lead-btn{
    background-color: #046bd2 !;
}
.eba-container p{
font-size:large !important;
}
/* Nagłówek */
.eba-header {
    text-align: center;
    margin-bottom: 30px;
    padding: 20px;
    background: #046bd2;
    color: white;
    border-radius: 12px;
    display:none !important;
}

.eba-header h2 {
    color: #fff !important;
    margin: 0 0 10px 0;
    font-size: 24px;
    font-weight: 600;
}

.eba-header p {
    margin: 0;
    opacity: 0.9;
    font-size: 16px;
}

/* Obszar czatu */
.eba-chat-area {
    min-height: 400px;
    display: flex;
    flex-direction: column;
}

/* Wiadomości */
.eba-messages {
    flex: 1;
    padding: 20px 0;
    max-height: 500px;
    overflow-y: auto;
}

.eba-message {
    margin-bottom: 20px;
    animation: fadeInUp 0.3s ease-out;
}

.eba-bot-message .eba-message-content {
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 18px 18px 18px 4px;
    padding: 15px 20px;
    margin-right: 60px;
    position: relative;
}

.eba-user-message .eba-message-content {
    background: #667eea;
    color: white;
    border-radius: 18px 18px 4px 18px;
    padding: 15px 20px;
    margin-left: 60px;
    text-align: right;
}

.eba-message-content p {
    margin: 0 0 10px 0;
    line-height: 1.4;
}

.eba-message-content p:last-child {
    margin-bottom: 0;
}

/* Opcje wyboru */
.eba-options {
    display: flex;
    gap: 10px;
    margin-top: 15px;
    flex-wrap: wrap;
}

.eba-option-btn {
    background: #046bd2;
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 20px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    flex: 1;
    min-width: 180px;
}

.eba-option-btn:hover {
    color: #1a202c;
    background: #aeb3db;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

/* Obszar wprowadzania */
.eba-input-area {
    padding: 20px 0;
    border-top: 1px solid #e9ecef;
}

.eba-chat-input {
    display: flex;
    gap: 10px;
    align-items: center;
}

.eba-chat-input input {
    flex: 1;
    padding: 12px 16px;
    border: 2px solid #e9ecef;
    border-radius: 25px;
    font-size: 14px;
    outline: none;
    transition: border-color 0.3s ease;
}

.eba-chat-input input:focus {
    border-color: #667eea;
}

.eba-chat-input button {
    background: #667eea;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
}

.eba-chat-input button:hover:not(:disabled) {
    background: #5a67d8;
    transform: translateY(-1px);
}

.eba-chat-input button:disabled {
    background: #cbd5e0;
    cursor: not-allowed;
    transform: none;
}

/* Panele */
.eba-panel {
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 12px;
    padding: 25px;
    margin: 20px 0;
    animation: slideInUp 0.4s ease-out;
}

.eba-panel h3 {
    margin: 0 0 20px 0;
    color: #2d3748;
    font-size: 20px;
    font-weight: 600;
}

/* Formularz */
.eba-form-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-bottom: 25px;
}

.eba-form-group {
    display: flex;
    flex-direction: column;
}

.eba-form-group label {
    margin-bottom: 6px;
    font-weight: 500;
    color: #b3b3b3;
    font-size: 14px;
}

.eba-form-group input,
.eba-form-group select,
.eba-form-group textarea {
    padding: 10px 14px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 14px;
    transition: all 0.3s ease;
    outline: none;
}

.eba-form-group input:focus,
.eba-form-group select:focus,
.eba-form-group textarea:focus {
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.eba-form-group textarea {
    resize: vertical;
    min-height: 80px;
}

/* Przesyłanie plików */
.eba-file-input {
    position: relative;
    margin-bottom: 20px;
}

.eba-file-input input[type="file"] {
    position: absolute;
    opacity: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

.eba-file-input label {
    display: block;
    padding: 40px 20px;
    border: 2px dashed #cbd5e0;
    border-radius: 12px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    background: #f7fafc;
}

.eba-file-input:hover label {
    border-color: #667eea;
    background: #edf2f7;
}

.eba-file-input label::before {
    content: "📄";
    display: block;
    font-size: 32px;
    margin-bottom: 10px;
}

/* Loading */
.eba-loading {
    text-align: center;
    padding: 30px;
}

.eba-loading p {
    margin: 0;
    font-size: 16px;
    color: #667eea;
    animation: pulse 1.5s infinite;
}

/* Akcje panelu */
.eba-panel-actions {
    display: flex;
    gap: 15px;
    justify-content: flex-end;
    margin-top: 25px;
    flex-wrap: wrap;
}

.eba-panel-actions button {
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 120px;
}

.eba-panel-actions button[type="submit"] {
    background: #046bd2;
    color: white;
}

.eba-panel-actions button[type="submit"]:hover {
    background: #aeb3db; 
    color: #000;
    transform: translateY(-1px);
}

.eba-cancel-btn {
    background: #e2e8f0;
    color: #4a5568;
}

.eba-cancel-btn:hover {
    background: #aeb3db;
    color: #000;
}

/* Oferty */
.eba-offer-card {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.eba-offer-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.eba-offer-header {
    display: flex;
    justify-content: between;
    align-items: flex-start;
    margin-bottom: 15px;
}

.eba-offer-title {
    font-size: 18px;
    font-weight: 600;
    color: #2d3748;
    margin: 0;
}

.eba-offer-supplier {
    color: white;
    font-size: 14px;
    margin: 5px 0;
}

.eba-offer-savings {
    background: #48bb78;
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    margin-left: auto;
}

.eba-offer-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin-bottom: 15px;
}

.eba-offer-detail {
    text-align: center;
    padding: 10px;
    background: #f7fafc;
    border-radius: 8px;
}

.eba-offer-detail-label {
    font-size: 12px;
    color: #718096;
    margin-bottom: 4px;
}

.eba-offer-detail-value {
    font-size: 16px;
    font-weight: 600;
    color: #2d3748;
}

.eba-offer-actions {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
}

.eba-offer-btn {
    padding: 8px 16px;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.eba-offer-btn-primary {
    background: #667eea;
    color: white;
}

.eba-offer-btn-primary:hover {
    background: #5a67d8;
}

.eba-offer-btn-secondary {
    background: #e2e8f0;
    color: #4a5568;
}

.eba-offer-btn-secondary:hover {
    background: #cbd5e0;
}

/* Lead opcje */
.eba-lead-options {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}
.ast-site-title-wrap {
    display: none;
}
#eba-download-contract-btn {
  display: none;
}

.eba-lead-btn {
    flex: 1;
    padding: 20px;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    font-size: 16px;
    font-weight: 500;
    min-width: 200px;
}

.eba-lead-btn:hover {
    border-color: #667eea;
    background: #f7fafc;
    transform: translateY(-2px);
    color:black;
}

/* Animacje */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

/* Responsywność */
@media (max-width: 768px) {
    .eba-container {
        margin: 10px;
        padding: 15px;
        width:100% !important;
    }

    .eba-form-grid {
        grid-template-columns: 1fr;
    }

    .eba-options {
        flex-direction: column;
    }

    .eba-option-btn {
        min-width: auto;
    }

    .eba-panel-actions {
        flex-direction: column;
    }

    .eba-lead-options {
        flex-direction: column;
    }

    .eba-offer-details {
        grid-template-columns: 1fr;
    }

    .eba-bot-message .eba-message-content {
        margin-right: 20px;
    }

    .eba-user-message .eba-message-content {
        margin-left: 20px;
    }
}

@media (max-width: 480px) {
    .eba-header h2 {
        font-size: 20px;
    }

    .eba-header p {
        font-size: 14px;
    }

    .eba-chat-input {
        flex-direction: column;
        gap: 10px;
    }

    .eba-chat-input input {
        border-radius: 8px;
    }

    .eba-chat-input button {
        border-radius: 8px;
        width: 100%;
    }
}

/* Dark mode support */

    .eba-container {
        background: #1a202c;
        color: #e2e8f0;
    }

    .eba-panel {
        background: #2d3748 !important;
        border-color: #4a5568;
    }

    .eba-bot-message .eba-message-content {
        background: #2d3748;
        border-color: #4a5568;
        color: #e2e8f0;
    }

    .eba-form-group input,
    .eba-form-group select,
    .eba-form-group textarea {
        background: #2d3748;
        border-color: #4a5568;
        color: #e2e8f0;
    }

    .eba-offer-card {
        background: #2d3748;
        border-color: #4a5568;
    }


/* Accessibility */
.eba-container *:focus {
    outline: 2px solid #667eea;
    outline-offset: 2px;
}

.eba-sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}
.eba-container input[type=text]:focus, .eba-container input[type=tel]:focus, .eba-container input[type=email]:focus{
    background-color: #2d3748 !important;
}
/*short code na stronie głownej*/

.eba-header{

    background-color: #046bd2 !important;
}
/* Spinner: biały obracający się okrąg */
.spinner {
  display: inline-block;
  width: 24px;
  height: 24px;
  margin-right: 8px;
  vertical-align: middle;
  border: 3px solid rgba(255,255,255,0.6);
  border-top-color: #ffffff;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
.eba-form-group input{
    color:white !important;
}

#eba-offers-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 24px;
    padding: 20px 0;
    max-width: 1200px;
    margin: 0 auto;
}

/* Karta oferty */
.eba-offer-card {
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #f0f0f0;
    display: flex;
    flex-direction: column;
    position: relative;
    animation: cardSlideIn 0.6s ease-out;
}

/* Animacyjne opóźnienia dla kolejnych kart */
.eba-offer-card:nth-child(2) { animation-delay: 0.1s; }
.eba-offer-card:nth-child(3) { animation-delay: 0.2s; }
.eba-offer-card:nth-child(4) { animation-delay: 0.3s; }

.eba-offer-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.12);
    border-color: #e0e7ff;
}

/* Nagłówek karty */
.eba-offer-header {
    padding: 24px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    position: relative;
}

.eba-offer-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #046bd2 0%, rgba(118,75,162,0.9) 100%);
}

.eba-offer-title-section {
    display: flex;
    align-items: center;
    gap: 16px;
    position: relative;
    z-index: 1;
}

.eba-supplier-logo {
    height: 48px;
    object-fit: contain;
    border-radius: 8px;
    padding: 4px;
    flex-shrink: 0;
}

.eba-offer-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0 0 4px;
    line-height: 1.3;
}

.eba-offer-supplier {
    font-size: 0.875rem;
    margin: 0;
    opacity: 0.9;
}

/* Oszczędność */
.eba-offer-savings {
    position: absolute;
    top: 16px;
    right: 16px;
    background: #22c55e;
    color: #ffffff;
    padding: 8px 12px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(34,197,94,0.3);
    z-index: 1;
}

.eba-savings-label {
    display: block;
    font-size: 0.75rem;
    opacity: 0.9;
    margin-bottom: 2px;
}

.eba-savings-amount {
    display: block;
    font-size: 0.875rem;
    font-weight: 700;
}

/* Szczegóły oferty */
.eba-offer-details {
    padding: 24px;
    background: #fafbfc;
    border-bottom: 1px solid #e5e7eb;
}

.eba-offer-detail {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
    padding: 12px 16px;
    background: #ffffff;
    border-radius: 8px;
    border-left: 4px solid #667eea;
}



.eba-offer-detail-label {
    font-size: 0.875rem;
    color: #6b7280;
    font-weight: 500;
}

.eba-offer-detail-value {
    font-size: 1rem;
    font-weight: 700;
    color: #111827;
}

.eba-guarantee-badge {
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
}

.eba-guarantee-yes {
    background: #d1fae5;
    color: #065f46;
}

.eba-guarantee-no {
    background: #fee2e2;
    color: #991b1b;
}

/* Opis oferty */
.eba-offer-description {
    padding: 24px;
    flex-grow: 1;
}

.eba-offer-description p {
    margin: 0;
    line-height: 1.6;
    color: #4b5563;
    font-size: 0.9rem;
}

/* Dane kontaktowe */
.eba-offer-contact {
    padding: 16px 24px;
    background: #f8fafc;
    border-top: 1px solid #e5e7eb;
    border-bottom: 1px solid #e5e7eb;
}

.eba-contact-item {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
    font-size: 0.875rem;
}

.eba-contact-item:last-child {
    margin-bottom: 0;
}

.eba-contact-item a {
    color: #667eea;
    text-decoration: none;
    transition: color 0.2s;
}

.eba-contact-item a:hover {
    color: #4f46e5;
    text-decoration: underline;
}

.eba-icon-email::before { content: "✉"; color: #667eea; font-size: 1rem; }
.eba-icon-phone::before { content: "☎"; color: #667eea; font-size: 1rem; }

/* Akcje */
.eba-offer-actions {
    padding: 24px;
    background: #ffffff;
}

.eba-offer-btn {
    width: 100%;
    padding: 16px;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.eba-offer-btn-primary {
    background: linear-gradient(135deg, #764ba2 0%, #046bd2 100%);
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(102,126,234,0.3);
}

.eba-offer-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102,126,234,0.4);
}

.eba-offer-btn-primary:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(102,126,234,0.3);
}

/* Animacja wejścia kart */
@keyframes cardSlideIn {
    from { opacity: 0; transform: translateY(30px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* Brak ofert */
.eba-no-offers {
    grid-column: 1 / -1;
    text-align: center;
    padding: 48px 24px;
    color: #6b7280;
    font-size: 1.1rem;
    background: #f9fafb;
    border-radius: 12px;
    border: 2px dashed #d1d5db;
}

/* Responsywność */
@media (max-width: 768px) {
    #eba-offers-container { grid-template-columns: 1fr; gap: 16px; padding: 16px; }
    .eba-offer-card { border-radius: 12px; }
    .eba-offer-header,
    .eba-offer-details,
    .eba-offer-description,
    .eba-offer-actions { padding: 20px; }
    .eba-offer-savings { position: static; margin: 16px 0 0; display: inline-block; }
    .eba-supplier-logo { width: 40px; height: 40px; }
    .eba-offer-title { font-size: 1.1rem; }
}

@media (max-width: 480px) {
    .eba-offer-detail { flex-direction: column; align-items: flex-start; gap: 8px; }
    .eba-offer-detail-value { font-size: 1.1rem; }
    .eba-offer-title-section { flex-direction: column; text-align: center; gap: 12px; }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    .eba-offer-card,
    .eba-offer-btn {
        transition: none;
        animation: none;
    }
    .eba-offer-card:hover,
    .eba-offer-btn-primary:hover {
        transform: none;
    }
}

/* Dark mode */
@media (prefers-color-scheme: dark) {
    .eba-offer-card { background: #1f2937; border-color: #374151; color: #f9fafb; }
    .eba-offer-details { background: #111827; }
    .eba-offer-detail { background: #1f2937; color: #f9fafb; }
    .eba-offer-detail-value { color: #f9fafb; }
    .eba-offer-contact { background: #111827; border-color: #374151; }
    .eba-no-offers { background: #1f2937; color: #9ca3af; border-color: #374151; }
}

/* Focus states */
.eba-offer-btn:focus {
    outline: 3px solid rgba(102,126,234,0.5);
    outline-offset: 2px;
}

.eba-contact-item a:focus {
    outline: 2px solid rgba(102,126,234,0.5);
    outline-offset: 2px;
    border-radius: 2px;
}
.eba-offer-title-section {
    display: flex;
    flex-direction: column;
    align-items:flex-start;
}
.eba-contact-item a {
    font-size: 18px;
}
.eba-contact-item a, .eba-contact-item i:before {
    color: white !important;
    text-decoration: none !important;
}
/* CSS dla checkboxa akceptacji regulaminu */
.eba-terms-section {
    margin: 15px 0 20px 0;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: border-color 0.3s ease;
}

.eba-terms-checkbox {
    display: flex;
    align-items: flex-start;
    cursor: pointer;
    user-select: none;
    font-size: 14px;
    line-height: 1.4;
}

.eba-terms-checkbox input[type="checkbox"] {
    display: none;
}

.eba-checkbox-custom {
    width: 18px;
    height: 18px;
    border: 2px solid #4CAF50;
    border-radius: 3px;
    margin-right: 10px;
    margin-top: 2px;
    flex-shrink: 0;
    position: relative;
    background: transparent;
    transition: all 0.3s ease;
}

.eba-terms-checkbox input[type="checkbox"]:checked + .eba-checkbox-custom {
    background: #4CAF50;
    border-color: #4CAF50;
}

.eba-terms-checkbox input[type="checkbox"]:checked + .eba-checkbox-custom::after {
    content: '✓';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 12px;
    font-weight: bold;
}

.eba-terms-text {
    color: #ffffff;
    flex: 1;
}

.eba-terms-link {
    color: #4CAF50;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.eba-terms-link:hover {
    color: #66BB6A;
}

/* Style dla wyłączonych przycisków */
.eba-option-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    background: #666666 !important;
    border-color: #666666 !important;
}

.eba-option-btn:disabled:hover {
    background: #666666 !important;
    transform: none;
}

/* Animacja włączania przycisków */
.eba-options.enabled .eba-option-btn {
    animation: enableButtons 0.5s ease;
}

@keyframes enableButtons {
    0% {
        opacity: 0.5;
        transform: scale(0.95);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}
.eba-offer-attributes {
    margin: 15px 0;
    padding: 10px;
    background-color: #f8f9fa;
    border-radius: 6px;
}

.eba-attribute-badge {
    display: inline-block;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 500;
    color: white;
    text-transform: uppercase;
}
/* Sekcja „Dodatkowe korzyści” */
.eba-offer-attributes {
    margin: 20px 0;
    padding: 16px;
    background: #f7fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.eba-attributes-label {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #2d3748;
    white-space: nowrap;
    margin-right: 8px;
}

.eba-attribute-badge {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 6px 12px;
    border-radius: 20px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    cursor: default;
}

.eba-attribute-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* Kolory badge zgodnie z Twoim designem */
.eba-attribute-price_guarantee      { background: #48bb78; color: #ffffff; }  /* zielony */
.eba-attribute-green_energy         { background: #20c997; color: #ffffff; }  /* morski */
.eba-attribute-online_service       { background: #046bd2; color: #ffffff; }  /* niebieski */
.eba-attribute-energy_consulting    { background: #6f42c1; color: #ffffff; }  /* fiolet */
.eba-attribute-installment_payments { background: #fd7e14; color: #ffffff; }  /* pomarańcz */
.eba-attribute-welcome_bonuses      { background: #e83e8c; color: #ffffff; }  /* różowy */

/* Responsywne dopasowanie */
@media (max-width: 768px) {
    .eba-offer-attributes {
        flex-direction: column;
        align-items: flex-start;
    }
}
a#eba-consultation-link {
    color: white;
    text-decoration: none;
    background-color: #046bd2 !important;
}
a#eba-consultation-link:hover{
    color:black !important;
    background-color: white !important;
}