/* iGołębnik / iDovecote - Global Styles 2026 */

:root {
    --primary: #2196f3;       /* Błękit iGołębnik */
    --primary-dark: #1976d2;
    --bg-color: #f0f4f8;      /* Jasne, nowoczesne tło */
    --card-bg: #ffffff;
    --text-main: #2c3e50;
    --text-muted: #7f8c8d;
    --error: #e74c3c;
    --success: #27ae60;
    --radius: 16px;           /* Zaokrąglone rogi aplikacji */
    --shadow: 0 10px 25px rgba(0,0,0,0.05);
}

* {
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

body {
    margin: 0;
    padding: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    background-color: var(--bg-color);
    color: var(--text-main);
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    line-height: 1.6;
}

/* Kontener dla strony logowania/rejestracji */
.auth-page {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    flex-grow: 1;
}

.auth-container {
    background: var(--card-bg);
    width: 100%;
    max-width: 400px;
    padding: 35px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    animation: fadeIn 0.5s ease;
}

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

/* Przełącznik języka */
.lang-switcher {
    display: flex;
    justify-content: flex-end;
    gap: 15px;
    margin-bottom: 20px;
}

.lang-switcher a {
    text-decoration: none;
    color: var(--text-muted);
    font-size: 13px;
    font-weight: 700;
    padding: 4px 8px;
    border-radius: 6px;
    transition: 0.3s;
}

.lang-switcher a.active {
    color: var(--primary);
    background: rgba(33, 150, 243, 0.1);
}

/* Typografia */
h2 {
    margin: 0 0 10px 0;
    font-size: 24px;
    color: var(--primary);
    text-align: center;
}

p.subtitle {
    text-align: center;
    color: var(--text-muted);
    font-size: 14px;
    margin-bottom: 30px;
}

/* Formularze */
form {
    display: flex;
    flex-direction: column;
}

label {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    margin: 10px 0 5px 0;
    color: var(--text-muted);
}

input, select, textarea {
    width: 100%;
    height: 54px; /* Optymalne pod kciuk */
    background: #f8fafd;
    border: 2px solid #eaeff5;
    border-radius: 12px;
    padding: 0 15px;
    font-size: 16px; /* Zapobiega zoomowi w iOS */
    margin-bottom: 15px;
    color: var(--text-main);
    transition: 0.3s;
}

input:focus, select:focus {
    outline: none;
    border-color: var(--primary);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(33, 150, 243, 0.1);
}

/* Przyciski */
.btn-primary {
    background: var(--primary);
    color: #fff;
    border: none;
    height: 56px;
    border-radius: 12px;
    font-size: 17px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s;
    margin-top: 10px;
}

.btn-primary:hover { background: var(--primary-dark); }
.btn-primary:active { transform: scale(0.97); }

.btn-gps {
    background: var(--success);
    color: white;
    border: none;
    padding: 12px;
    border-radius: 10px;
    font-weight: bold;
    margin-bottom: 15px;
    cursor: pointer;
}

/* Dashboard Styles 2026 */
.dashboard-page { background: #f0f4f8; align-items: flex-start; flex-direction: column; }

.top-nav {
    width: 100%; background: var(--primary); color: white;
    padding: 15px 20px; display: flex; justify-content: space-between; align-items: center;
    position: sticky; top: 0; z-index: 100;
}

.container { width: 100%; max-width: 600px; margin: 0 auto; padding: 15px; }

/* Trial Banner */
.trial-banner {
    background: #fff; padding: 15px; border-radius: 12px; margin-bottom: 20px;
    display: flex; justify-content: space-between; align-items: center;
    border-left: 5px solid var(--primary); box-shadow: var(--shadow);
}
.trial-banner.urgent { border-left-color: var(--error); background: #fff5f5; }

/* Sekcja Gołębników na Dashboardzie */
.section-header { 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    margin: 20px 0 10px; 
}

.btn-small { 
    background: var(--primary); 
    color: white; 
    text-decoration: none; 
    padding: 6px 12px; 
    border-radius: 20px; 
    font-size: 12px; 
    font-weight: bold; 
}

.lofts-grid { display: flex; flex-direction: column; gap: 10px; }

.loft-card { 
    background: white; 
    padding: 15px; 
    border-radius: 15px; 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    box-shadow: var(--shadow);
    border-left: 5px solid var(--primary);
}

.loft-details strong { display: block; font-size: 15px; }
.loft-details .coords { font-size: 12px; color: var(--text-muted); }

.loft-card .badge { 
    background: #f0f7ff; 
    color: var(--primary); 
    padding: 4px 8px; 
    border-radius: 6px; 
    font-size: 11px; 
    font-weight: bold; 
}

.empty-state { 
    text-align: center; 
    padding: 20px; 
    background: white; 
    border-radius: 15px; 
    border: 2px dashed #ccc; 
}

/* Stats */
.stats-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; margin-bottom: 25px; }
.stat-card { background: white; padding: 20px; border-radius: 15px; box-shadow: var(--shadow); }
.stat-card .value { font-size: 22px; font-weight: 800; color: var(--primary); margin-top: 5px; }
.stat-card.highlight { background: var(--primary); color: white; }
.stat-card.highlight .value { color: white; }

/* Menu Przyciski */
.action-menu { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
.action-btn {
    background: white; padding: 25px 15px; border-radius: 20px; text-decoration: none;
    color: var(--text-main); font-weight: 700; display: flex; flex-direction: column;
    align-items: center; justify-content: center; gap: 10px; box-shadow: var(--shadow);
    transition: transform 0.2s;
}
.action-btn:active { transform: scale(0.95); }
.action-btn .icon { font-size: 30px; }

/* Responsywność */
@media (max-width: 480px) {
    .auth-container {
        padding: 25px 20px;
        box-shadow: none;
        border-radius: 0;
        background: transparent;
    }
    .auth-page { align-items: flex-start; background: #fff; }
    body { background: #fff; }
    .stats-grid, .action-menu { gap: 10px; }
}

p.subtitle {
    text-align: center;
    color: var(--text-muted);
    font-size: 14px;
    margin-bottom: 25px;
    line-height: 1.4;
}

.auth-links p {
    margin: 0;
    padding: 0;
}

.auth-links a {
    color: var(--primary);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.3s;
}

.auth-links a:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}
/* Styl dla formularza dodawania gołębnika */
.loft-form-container {
    max-width: 500px;
    margin: 20px auto;
}

.gps-group {
    background: #f8fafd;
    padding: 15px;
    border-radius: 12px;
    border: 1px dashed var(--primary);
    margin-bottom: 20px;
}

.btn-gps {
    background-color: var(--success);
    color: white;
    border: none;
    height: 50px;
    border-radius: 12px;
    font-weight: 700;
    width: 100%;
    margin-top: 10px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    transition: 0.3s;
}

.btn-gps:active {
    transform: scale(0.96);
    background-color: #1e8449;
}

.coords-display {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 10px;
}

.coords-display input {
    margin-bottom: 0;
    font-family: monospace; /* Współrzędne lepiej wyglądają w mono */
    font-size: 14px;
    text-align: center;
}
.btn-renew {
    background: var(--success); /* Zielony - kolor pieniędzy i pozytywnej akcji */
    color: white;
    text-decoration: none;
    padding: 10px 18px;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 700;
    transition: 0.3s;
    box-shadow: 0 4px 10px rgba(39, 174, 96, 0.2);
}

.btn-renew:hover {
    background: #219150;
    transform: translateY(-2px);
}

.trial-banner.urgent .btn-renew {
    animation: pulse 2s infinite; /* Pulsuje, gdy zostały tylko 2 dni */
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}
/* --- STYLE DLA GOŁĘBNIKÓW I FORMULARZA ADD --- */

/* Specjalny kontener dla formularzy wewnątrz Dashboardu */
.container .auth-container {
    margin-top: 20px;
    box-shadow: var(--shadow);
    width: 100%;
}

/* Grupa GPS - wyróżniona ramka */
.gps-group {
    background: #f0f7ff;
    padding: 15px;
    border-radius: 12px;
    border: 1.5px dashed var(--primary);
    margin-bottom: 20px;
}

.gps-group label {
    display: block;
    margin-bottom: 10px;
    color: var(--primary);
    font-size: 11px;
}

/* Przyciski specjalne */
.btn-success {
    background-color: var(--success);
    color: white;
    border: none;
    height: 48px;
    border-radius: 10px;
    width: 100%;
    font-weight: 700;
    cursor: pointer;
    margin-bottom: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

/* Wyświetlanie współrzędnych obok siebie */
.coords-display {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.coords-display input[readonly] {
    background: #e9ecef;
    color: #495057;
    cursor: not-allowed;
    font-family: monospace;
    font-size: 13px;
    text-align: center;
}

/* --- ELEMENTY DASHBOARDU --- */

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 20px 0 10px;
}

.section-header h3 {
    margin: 0;
    font-size: 18px;
    color: var(--text-main);
}

.lofts-grid {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.loft-card {
    background: white;
    padding: 15px;
    border-radius: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: var(--shadow);
    border-left: 5px solid var(--primary);
}

.loft-details strong {
    display: block;
    font-size: 16px;
    color: var(--text-main);
}

.loft-details .coords {
    font-size: 12px;
    color: var(--text-muted);
}

.badge {
    background: #e3f2fd;
    color: var(--primary);
    padding: 4px 10px;
    border-radius: 8px;
    font-size: 11px;
    font-weight: bold;
    text-transform: uppercase;
}


.pigeon-list { display: flex; flex-direction: column; gap: 10px; }

.pigeon-card {
    background: white; padding: 15px; border-radius: 12px;
    display: flex; justify-content: space-between; align-items: center;
    box-shadow: var(--shadow); border-bottom: 1px solid #eee;
}

.p-info strong { display: block; font-size: 16px; color: var(--primary); }
.p-info small { color: var(--text-muted); font-size: 12px; }
.p-loft-badge { font-size: 10px; background: #f0f4f8; padding: 2px 6px; border-radius: 4px; margin-top: 4px; display: inline-block; }

.btn-transfer {
    background: #673ab7; color: white; text-decoration: none; padding: 10px 15px;
    border-radius: 8px; font-size: 12px; font-weight: bold; transition: 0.3s;
}

.transfer-code-display {
    background: #ffeb3b; color: #000; padding: 5px 12px; border-radius: 8px;
    text-align: center; border: 2px dashed #000; animation: fadeIn 0.3s;
}
/* Styl dla linków do gołębników */
a.loft-card-link {
    text-decoration: none;
    color: inherit; /* Dziedziczy kolor, by nie był domyślnie niebieski */
}
.pedigree-tree { display: flex; flex-direction: column; gap: 20px; margin-top: 20px; }
.tree-section { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.p-card { 
    background: white; padding: 15px; border-radius: 12px; 
    border-left: 4px solid #ddd; box-shadow: var(--shadow);
}
.p-card.cock { border-left-color: #2196f3; } /* Niebieski dla samców */
.p-card.hen { border-left-color: #e91e63; }  /* Różowy dla samic */
.p-card small { display: block; font-size: 10px; color: #888; margin-bottom: 5px; }
.p-card strong { font-size: 14px; }

.tree-grid-grand { display: grid; grid-template-columns: repeat(4, 1fr); gap: 5px; }
.p-card.mini { padding: 8px 4px; font-size: 10px; text-align: center; }

.pedigree-container { margin-top: 10px; }
.main-pigeon { text-align: center; background: white; padding: 20px; border-radius: 15px; margin-bottom: 20px; box-shadow: var(--shadow); }
.generation-label { font-size: 11px; font-weight: 800; color: var(--text-muted); margin-bottom: 10px; text-align: center; letter-spacing: 1px; }

.tree-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 20px; }
.tree-grid-mini { display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px; }

.p-box { 
    background: white; padding: 12px; border-radius: 12px; 
    box-shadow: var(--shadow); border-top: 4px solid #ccc;
    display: flex; flex-direction: column;
}
.p-box.cock { border-top-color: var(--primary); }
.p-box.hen { border-top-color: #e91e63; } /* Różowy dla samic */

.p-box small { font-size: 9px; color: #888; text-transform: uppercase; }
.p-box strong { font-size: 13px; margin: 3px 0; }
.p-box span { font-size: 11px; color: #555; }
.p-box.mini { padding: 8px; }
.p-box.mini strong { font-size: 11px; }
.media-upload-section {
    display: grid; grid-template-columns: 1fr 1fr; gap: 15px;
    background: #f8fafd; padding: 15px; border-radius: 15px; border: 1px solid #e0e6ed; margin: 15px 0;
}
.upload-item label { font-size: 11px; margin-bottom: 8px; display: block; }
.preview-thumb {
    width: 100%; height: 80px; border-radius: 10px;
    background-size: cover; background-position: center; margin-bottom: 10px;
    border: 2px solid white; box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}
.pigeon-display-card { background: white; border-radius: 15px; overflow: hidden; margin-bottom: 20px; box-shadow: var(--shadow); }
.pigeon-main-photo { position: relative; width: 100%; height: 200px; background: #f0f4f8; display: flex; align-items: center; justify-content: center; }
.pigeon-main-photo img { width: 100%; height: 100%; object-fit: cover; }
.pigeon-eye-thumb { position: absolute; bottom: 10px; right: 10px; width: 70px; height: 70px; border-radius: 50%; border: 3px solid white; overflow: hidden; background: #fff; box-shadow: 0 4px 10px rgba(0,0,0,0.2); }
.pigeon-eye-thumb img { width: 100%; height: 100%; object-fit: cover; }
.main-pigeon-info { padding: 15px; text-align: center; }
.badge-dist { background: var(--primary); color: white; padding: 3px 10px; border-radius: 10px; font-size: 10px; font-weight: bold; 
    
}


/* Kontener profilu - domyślnie pod smartfony */
.pigeon-profile-grid { display: flex; flex-direction: column; gap: 20px; }

.main-photo-card { position: relative; border-radius: 20px; overflow: hidden; background: #eee; }
.img-fluid { width: 100%; display: block; }
.eye-mini { position: absolute; bottom: 15px; right: 15px; width: 80px; height: 80px; border: 4px solid white; border-radius: 50%; overflow: hidden; box-shadow: 0 4px 10px rgba(0,0,0,0.3); background: white; }
.eye-mini img { width: 100%; height: 100%; object-fit: cover; }

.options-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
.opt-btn { background: white; padding: 25px 15px; border-radius: 15px; text-align: center; text-decoration: none; font-weight: bold; color: #333; box-shadow: var(--shadow); border: 1px solid #eee; transition: 0.2s; }
.opt-btn:hover { border-color: var(--primary); transform: translateY(-3px); }

/* --- REAKCJA NA LAPTOPA (> 992px) --- */
@media (min-width: 992px) {
    .pigeon-profile-grid {
        flex-direction: row; /* Układaj obok siebie */
        align-items: flex-start;
    }
    .profile-sidebar { width: 350px; flex-shrink: 0; }
    .profile-content { flex-grow: 1; }
    .options-grid {
        grid-template-columns: repeat(3, 1fr); /* 3 kafelki w rzędzie zamiast 2 */
    }
}

.code-alert-box {
    background: #fff9c4; /* Jasnożółty - kolor uwagi */
    border: 2px dashed #fbc02d;
    padding: 20px;
    border-radius: 15px;
    text-align: center;
    margin-bottom: 20px;
    animation: pulse-border 2s infinite;
}
.big-code {
    font-size: 32px;
    font-weight: 900;
    color: #000;
    letter-spacing: 2px;
    margin: 10px 0;
}
@keyframes pulse-border {
    0% { border-color: #fbc02d; }
    50% { border-color: #673ab7; } /* Zmienia się na fiolet iLoft */
    100% { border-color: #fbc02d; }
}
.detail-row {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid #f0f0f0;
    padding: 10px 0;
    font-size: 18px;
}
.detail-row span { color: #718096; font-size: 14px; text-transform: uppercase; }
.detail-row strong { color: #1a202c; font-size: 20px; }
.cert-subtitle { font-size: 24px; color: #666; margin-top: -10px; margin-bottom: 20px; }
.qr-code-container {
    text-align: center;
    background: white;
    padding: 10px;
    border: 1px solid #eee;
    border-radius: 10px;
}
.qr-code-container img {
    width: 100px;
    height: 100px;
}
/* --- iLoft.io - NOWE STYLE 2026 (Responsywność i Multimedia) --- */

/* 1. Rozszerzony kontener dla laptopów */
@media (min-width: 992px) {
    .container {
        max-width: 1200px; /* Szeroki widok na komputerze */
    }
    
    /* Lista gołębi zmienia się w kafelki na laptopie */
    .pigeon-list-wrapper {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
        gap: 15px;
    }

    /* Profil gołębia - zdjęcie obok opcji */
    .pigeon-profile-layout {
        display: grid;
        grid-template-columns: 400px 1fr;
        gap: 30px;
        align-items: flex-start;
    }
}

/* 2. Style Profilu Gołębia (show.php) */
.p-main-image-box { 
    position: relative; 
    border-radius: 20px; 
    overflow: hidden; 
    background: #e2e8f0; 
    box-shadow: var(--shadow);
}
.p-main-image-box img.profile-img { 
    width: 100%; 
    height: 300px; 
    object-fit: cover; 
    display: block; 
}
.p-eye-circle { 
    position: absolute; 
    bottom: 15px; 
    right: 15px; 
    width: 80px; 
    height: 80px; 
    border: 4px solid white; 
    border-radius: 50%; 
    overflow: hidden; 
    background: white; 
    box-shadow: 0 4px 15px rgba(0,0,0,0.2); 
}
.p-eye-circle img { width: 100%; height: 100%; object-fit: cover; }

.p-options-grid { 
    display: grid; 
    grid-template-columns: 1fr 1fr; 
    gap: 15px; 
    margin-top: 20px; 
}
.p-opt-card { 
    background: white; 
    padding: 25px 15px; 
    border-radius: 15px; 
    text-align: center; 
    text-decoration: none; 
    font-weight: bold; 
    color: var(--text-main); 
    box-shadow: var(--shadow); 
    border: 1px solid #edf2f7; 
    transition: 0.2s; 
}
.p-opt-card:hover { border-color: var(--primary); transform: translateY(-3px); }

/* 3. Style dla Certyfikatu (Dwujęzyczne) */
.en-label { font-weight: 800; font-size: 13px; color: #1a202c; letter-spacing: 0.5px; }
.pl-label { font-size: 10px; color: #718096; font-style: italic; display: block; margin-top: -2px; }

/* 4. Multimedia w edycji */
.media-upload-section {
    display: grid; 
    grid-template-columns: 1fr 1fr; 
    gap: 15px;
    background: #f8fafd; 
    padding: 15px; 
    border-radius: 15px; 
    border: 1px solid #e0e6ed; 
    margin: 15px 0;
}
.preview-thumb {
    width: 100%; 
    height: 100px; 
    border-radius: 12px;
    background-size: cover; 
    background-position: center; 
    margin-bottom: 10px;
    background-color: #eee;
}

/* 5. Kolory płci dla Rodowodu */
.p-box.cock { border-left: 5px solid var(--primary); }
.p-box.hen { border-left: 5px solid #e91e63; }
/* Dla profilu gołębia i certyfikatu */
/* Dla profilu gołębia i certyfikatu */
.photo-main, .profile-img, .p-main-img {
    width: 100%;
    height: 100%;
    object-fit: cover;        /* Zachowuje proporcje i wypełnia ramkę */
    object-position: top center; /* KLUCZ: Kadruje od góry, by nie ucinać głowy */
}
/* --- INTEGRACJA GIEŁDOWA iLOFT --- */

/* 1. Nowe zmienne dla efektu giełdy */
:root {
    --stock-green: #00ff66;   /* Neonowa zieleń giełdowa */
    --stock-red: #ff3b30;     /* Czerwień spadku */
    --dark-panel: #1a237e;    /* Głęboki granatowy (tło karty) */
}

/* 2. Przebudowana Karta Transfermarkt (Highlight) */
.stat-card.highlight {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--dark-panel) 100%) !important;
    color: white;
    border: none;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.stat-card.highlight:hover {
    transform: scale(1.02);
}

/* 3. Wskaźnik Trendu (Giełdowa strzałka) */
.stat-card .trend-box {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(0, 255, 102, 0.2);
    color: var(--stock-green);
    padding: 4px 8px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 4px;
}

/* 4. Neonowa wartość Transfermarkt */
.stat-card.highlight .value {
    color: var(--stock-green) !important;
    text-shadow: 0 0 15px rgba(0, 255, 102, 0.4);
    font-family: 'Monaco', 'Consolas', monospace; /* Styl giełdowego terminala */
    margin-top: 10px;
}

/* 5. Mini Wykres (Fake Sparkline przez CSS) */
.stat-card.highlight::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 30px;
    background: linear-gradient(transparent, rgba(0, 255, 102, 0.1));
    /* To stworzy efekt "mgły" na dole karty */
}

/* 6. Live Ticker (Pasek przesuwny pod statystykami) */
.live-ticker-wrap {
    width: 100%;
    background: #000;
    color: var(--stock-green);
    font-size: 11px;
    padding: 6px 0;
    margin-top: 15px;
    border-radius: 8px;
    overflow: hidden;
    font-family: monospace;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.live-ticker-wrap marquee {
    display: block;
}

/* 7. Animacja pulsu dla aktywnych lotów */
@keyframes active-pulse {
    0% { box-shadow: 0 0 0 0 rgba(33, 150, 243, 0.4); }
    70% { box-shadow: 0 0 0 10px rgba(33, 150, 243, 0); }
    100% { box-shadow: 0 0 0 0 rgba(33, 150, 243, 0); }
}

.active-race {
    animation: active-pulse 2s infinite;
    border: 2px solid var(--primary) !important;
}

/* --- KONIEC DODATKÓW GIEŁDOWYCH --- */
.cert-logo img, .top-mini-logo img {
    width: 100%;
    height: auto;
    display: block;
}


