/* Modul 1 */

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

.indicators-section {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
    background-color: #f4f4f9;
}

.indicators-section h2 {
    text-align: center;
    color: #333;
    margin-bottom: 30px;
    font-size: 24px;
}

.indicators-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.indicators-section .indicator-item {
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    width: 360px;
    padding: 20px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    transition: transform 0.3s, border-left-color 0.3s;
    border-left: 4px solid transparent;
}

.indicators-section .indicator-item:hover {
    transform: translateY(-5px);
}

/* Dinamikus színes csíkok a kártyákhoz (17 kártya van, ciklikusan ismétlődnek a színek) */
.indicators-section .indicator-item.item-1 {
    border-left-color: #dc3545; /* Piros */
}
.indicators-section .indicator-item.item-1:hover {
    border-left-color: #ff4040;
}

.indicators-section .indicator-item.item-2 {
    border-left-color: #28a745; /* Zöld */
}
.indicators-section .indicator-item.item-2:hover {
    border-left-color: #2ecc71;
}

.indicators-section .indicator-item.item-3 {
    border-left-color: #0066cc; /* Kék */
}
.indicators-section .indicator-item.item-3:hover {
    border-left-color: #3399ff;
}

.indicators-section .indicator-item.item-4 {
    border-left-color: #ffc107; /* Sárga */
}
.indicators-section .indicator-item.item-4:hover {
    border-left-color: #ffd700;
}

.indicators-section .indicator-item.item-5 {
    border-left-color: #17a2b8; /* Türkiz */
}
.indicators-section .indicator-item.item-5:hover {
    border-left-color: #1abc9c;
}

.indicators-section .indicator-item.item-6 {
    border-left-color: #6f42c1; /* Lila */
}
.indicators-section .indicator-item.item-6:hover {
    border-left-color: #8e44ad;
}

.indicators-section .indicator-item.item-7 {
    border-left-color: #dc3545; /* Piros (ciklus újraindul) */
}
.indicators-section .indicator-item.item-7:hover {
    border-left-color: #ff4040;
}

.indicators-section .indicator-item.item-8 {
    border-left-color: #28a745; /* Zöld */
}
.indicators-section .indicator-item.item-8:hover {
    border-left-color: #2ecc71;
}

.indicators-section .indicator-item.item-9 {
    border-left-color: #0066cc; /* Kék */
}
.indicators-section .indicator-item.item-9:hover {
    border-left-color: #3399ff;
}

.indicators-section .indicator-item.item-10 {
    border-left-color: #ffc107; /* Sárga */
}
.indicators-section .indicator-item.item-10:hover {
    border-left-color: #ffd700;
}

.indicators-section .indicator-item.item-11 {
    border-left-color: #17a2b8; /* Türkiz */
}
.indicators-section .indicator-item.item-11:hover {
    border-left-color: #1abc9c;
}

.indicators-section .indicator-item.item-12 {
    border-left-color: #6f42c1; /* Lila */
}
.indicators-section .indicator-item.item-12:hover {
    border-left-color: #8e44ad;
}

.indicators-section .indicator-item.item-13 {
    border-left-color: #dc3545; /* Piros */
}
.indicators-section .indicator-item.item-13:hover {
    border-left-color: #ff4040;
}

.indicators-section .indicator-item.item-14 {
    border-left-color: #28a745; /* Zöld */
}
.indicators-section .indicator-item.item-14:hover {
    border-left-color: #2ecc71;
}

.indicators-section .indicator-item.item-15 {
    border-left-color: #0066cc; /* Kék */
}
.indicators-section .indicator-item.item-15:hover {
    border-left-color: #3399ff;
}

.indicators-section .indicator-item.item-16 {
    border-left-color: #ffc107; /* Sárga */
}
.indicators-section .indicator-item.item-16:hover {
    border-left-color: #ffd700;
}

.indicators-section .indicator-item.item-17 {
    border-left-color: #17a2b8; /* Türkiz */
}
.indicators-section .indicator-item.item-17:hover {
    border-left-color: #1abc9c;
}

.indicators-section .indicator-item .fa {
    font-size: 40px;
    color: #0066cc;
    transition: color 0.3s;
}

.indicators-section .indicator-item:hover .fa {
    color: #003366;
}

.indicators-section .indicator-text {
    flex: 1;
    text-align: left;
}

.indicators-section .indicator-text p {
    font-family: Arial, sans-serif;
    font-size: 14px;
    color: #333;
    margin: 0 0 10px;
    line-height: 1.5;
    text-align: left;
}

.indicators-section .indicator-text ul {
    list-style: none;
    margin: 10px 0 0;
    padding-left: 10px;
    text-align: left;
}

.indicators-section .indicator-text ul li {
    font-size: 13px;
    color: #555;
    margin-bottom: 5px;
    position: relative;
    text-align: left;
}

.indicators-section .indicator-text ul li:before {
    content: "•";
    color: #0066cc;
    position: absolute;
    left: -10px;
}

.indicators-section .indicator-text .source {
    font-size: 12px;
    color: #0066cc;
    margin-top: 10px;
    display: block;
    text-align: left;
}

.indicators-section .indicator-text .source a {
    color: #0066cc;
    text-decoration: none;
}

.indicators-section .indicator-text .source a:hover {
    color: #003366;
}

@media (max-width: 768px) {
    .indicators-section .indicator-item {
        width: 100%;
    }
    .indicators-section h2 {
        font-size: 20px;
    }
    .indicators-section .indicator-item .fa {
        font-size: 36px;
    }
}

.finance-section {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
    background-color: #f4f4f9;
}

.finance-section h2 {
    text-align: center;
    color: #333;
    margin-bottom: 30px;
    font-size: 24px;
}

.finance-indicators {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.indicator-item {
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    width: 260px;
    padding: 20px;
    transition: transform 0.3s, border-left-color 0.3s;
    border-left: 4px solid transparent;
}

.indicator-item:hover {
    transform: translateY(-5px);
}

/* Mutató-specifikus színes csíkok */
.indicator-item.infláció-éves-változás {
    border-left-color: #dc3545; /* Piros az inflációhoz */
}
.indicator-item.infláció-éves-változás:hover {
    border-left-color: #ff4040;
}

.indicator-item.munkanélküliségi-ráta {
    border-left-color: #0066cc; /* Kék a munkanélküliséghez */
}
.indicator-item.munkanélküliségi-ráta:hover {
    border-left-color: #3399ff;
}

.indicator-item.gdp-növekedés-éves {
    border-left-color: #ffc107; /* Sárga a GDP-hez */
}
.indicator-item.gdp-növekedés-éves:hover {
    border-left-color: #ffd700;
}

.indicator-item.bruttó-átlagkereset-havi {
    border-left-color: #28a745; /* Zöld a keresetekhez */
}
.indicator-item.bruttó-átlagkereset-havi:hover {
    border-left-color: #2ecc71;
}

.indicator-text {
    text-align: center;
    width: 100%;
}

.indicator-text p {
    font-family: Arial, sans-serif;
    font-size: 14px;
    color: #333;
    margin: 0;
    line-height: 1.5;
}

.indicator-text .label {
    font-size: 14px;
    color: #666;
    margin-bottom: 10px;
}

.indicator-text .description {
    font-size: 12px;
    color: #777;
    margin-top: 10px;
}

.chart-wrapper {
    width: 100%;
    height: 120px;
    margin: 10px 0;
}

.comparison-chart {
    width: 100%;
    height: 100%;
}

.finance-section .source {
    display: block;
    text-align: right;
    font-size: 12px;
    color: #0066cc;
    margin-top: 20px;
}

.finance-section .source a {
    color: #0066cc;
    text-decoration: none;
}

.finance-section .source a:hover {
    color: #003366;
}

@media (max-width: 768px) {
    .indicator-item {
        width: 100%;
    }
    .finance-section h2 {
        font-size: 20px;
    }
}








/* Modul 2 */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

.crypto-section {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
    background-color: #f4f4f9;
}

.crypto-section h2 {
    text-align: center;
    color: #333;
    margin-bottom: 30px;
    font-size: 24px;
}

.crypto-indicators {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    margin-bottom: 40px;
}

.indicator-item {
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    width: 260px;
    padding: 20px;
    transition: transform 0.3s;
}

.indicator-item:hover {
    transform: translateY(-5px);
}

.indicator-text {
    text-align: center;
    width: 100%;
}

.indicator-text p {
    font-family: Arial, sans-serif;
    font-size: 14px;
    color: #333;
    margin: 0;
    line-height: 1.5;
}

.indicator-text .value {
    font-size: 20px;
    font-weight: bold;
    color: #333;
    margin: 10px 0;
}

.indicator-text .label {
    font-size: 14px;
    color: #666;
}

.change-positive {
    color: #28a745;
    font-size: 14px;
}

.change-negative {
    color: #dc3545;
    font-size: 14px;
}

.fear-greed-gauge {
    position: relative;
    width: 150px;
    height: 75px;
    margin: 10px auto;
}

.fear-greed-gauge .gauge {
    width: 100%;
    height: 100%;
    background: conic-gradient(
        #dc3545 0deg 60deg,
        #ffc107 60deg 120deg,
        #28a745 120deg 180deg
    );
    border-radius: 150px 150px 0 0;
    position: relative;
    overflow: hidden;
}

.fear-greed-gauge .gauge::after {
    content: "";
    position: absolute;
    width: 120px;
    height: 60px;
    background: #fff;
    border-radius: 120px 120px 0 0;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.fear-greed-gauge .needle {
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 3px;
    height: 60px;
    background: #555;
    transform-origin: bottom;
    transform: translateX(-50%) rotate(-90deg);
    transition: transform 0.5s ease;
    z-index: 1;
}

.altcoin-season-bar {
    position: relative;
    display: flex;
    width: 100%;
    height: 10px;
    background: #eee;
    border-radius: 5px;
    margin: 10px 0;
}

.altcoin-season-bar .bitcoin {
    background: #f7931a;
    border-radius: 5px 0 0 5px;
}

.altcoin-season-bar .altcoin {
    background: #0066cc;
    border-radius: 0 5px 5px 0;
}

.altcoin-season-bar::after {
    content: "";
    position: absolute;
    left: 15%;
    width: 2px;
    height: 10px;
    background: #333;
    z-index: 1;
}

.altcoin-season-bar .ratio-label {
    position: absolute;
    top: -20px;
    left: 15%;
    transform: translateX(-50%);
    font-size: 12px;
    color: #333;
}

.mini-graph {
    width: 80px;
    height: 30px;
    margin: 10px auto;
}

.mini-graph svg {
    width: 100%;
    height: 100%;
}

.crypto-list {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    padding: 10px;
    margin: 0;
    overflow-x: auto;
}

.crypto-list table {
    width: 100%;
    border-collapse: collapse;
    min-width: 300px; /* Még kisebb minimum szélesség */
    margin: 0;
    table-layout: auto; /* Oszlopok mérete a tartalomhoz igazodik */
}

.crypto-list th,
.crypto-list td {
    padding: 10px;
    text-align: left;
    font-family: Arial, sans-serif;
    font-size: 14px;
    color: #333;
    width: auto; /* Szélesség a tartalomhoz igazodik */
}

.crypto-list th {
    background-color: #f8f8f8;
    font-weight: bold;
    white-space: nowrap;
}

.crypto-list td {
    border-bottom: 1px solid #eee;
    white-space: nowrap;
}

.crypto-list .change-positive {
    color: #28a745;
}

.crypto-list .change-negative {
    color: #dc3545;
}

.crypto-list .source {
    font-size: 12px;
    color: #0066cc;
    margin-top: 10px;
    display: block;
    text-align: right;
}

.crypto-list .source a {
    color: #0066cc;
    text-decoration: none;
}

.crypto-list .source a:hover {
    color: #003366;
}

@media (max-width: 768px) {
    .indicator-item {
        width: 100%;
    }
    .crypto-section h2 {
        font-size: 20px;
    }
    .fear-greed-gauge {
        width: 120px;
        height: 60px;
    }
    .fear-greed-gauge .gauge::after {
        width: 96px;
        height: 48px;
    }
    .fear-greed-gauge .needle {
        height: 48px;
    }
    .crypto-list {
        padding: 10px;
    }
    .crypto-list table {
        font-size: 10px;
    }
    .crypto-list th,
    .crypto-list td {
        padding: 0;
        font-size: 10px;
        width: auto; /* Szélesség a tartalomhoz igazodik */
    }
    .crypto-list td:nth-child(1), /* Coin oszlop */
    .crypto-list td:nth-child(2), /* Ár oszlop */
    .crypto-list td:nth-child(3), /* Market Cap oszlop */
    .crypto-list td:nth-child(4), /* Circulating Supply oszlop */
    .crypto-list td:nth-child(5) { /* 7d % oszlop */
        font-size: 9px;
    }
    .crypto-list th:nth-child(4), /* Circulating Supply fejléc */
    .crypto-list td:nth-child(4), /* Circulating Supply oszlop */
    .crypto-list th:nth-child(5), /* 7d % fejléc */
    .crypto-list td:nth-child(5) { /* 7d % oszlop */
        display: none;
    }
}


/* Modul 3 */

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

.stocks-section {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
    background-color: #f4f4f9;
}

.stocks-section h2,
.stocks-section h3 {
    text-align: center;
    color: #333;
    margin-bottom: 30px;
    font-size: 24px;
}

.stocks-indicators {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    margin-bottom: 40px;
}

.indicator-item {
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    width: 260px;
    padding: 20px;
    transition: transform 0.3s, border-left-color 0.3s;
    border-left: 4px solid transparent; /* Alapértelmezett bal oldali csík */
}

.indicator-item:hover {
    transform: translateY(-5px);
}

/* Index-specifikus színes csíkok */
.indicator-item.s-p-500 {
    border-left-color: #28a745; /* Zöld az S&P 500-hoz */
}
.indicator-item.s-p-500:hover {
    border-left-color: #2ecc71; /* Világosabb zöld hover-re */
}

.indicator-item.dow-jones {
    border-left-color: #0066cc; /* Kék a Dow Jones-hoz */
}
.indicator-item.dow-jones:hover {
    border-left-color: #3399ff; /* Világosabb kék hover-re */
}

.indicator-item.nasdaq {
    border-left-color: #ffc107; /* Sárga a NASDAQ-hoz */
}
.indicator-item.nasdaq:hover {
    border-left-color: #ffd700; /* Világosabb sárga hover-re */
}

.indicator-item.dax {
    border-left-color: #dc3545; /* Piros a DAX-hoz */
}
.indicator-item.dax:hover {
    border-left-color: #ff4040; /* Világosabb piros hover-re */
}

.indicator-item.ftse-100 {
    border-left-color: #17a2b8; /* Türkiz a FTSE 100-hoz */
}
.indicator-item.ftse-100:hover {
    border-left-color: #1abc9c; /* Világosabb türkiz hover-re */
}

.indicator-item.nikkei-225 {
    border-left-color: #6f42c1; /* Lila a Nikkei 225-höz */
}
.indicator-item.nikkei-225:hover {
    border-left-color: #8e44ad; /* Világosabb lila hover-re */
}

.indicator-text {
    text-align: center;
    width: 100%;
}

.indicator-text p {
    font-family: Arial, sans-serif;
    font-size: 14px;
    color: #333;
    margin: 0;
    line-height: 1.5;
}

.indicator-text .value {
    font-size: 20px;
    font-weight: bold;
    color: #333;
    margin: 10px 0;
}

.indicator-text .label {
    font-size: 14px;
    color: #666;
}

.change-positive {
    color: #28a745;
    font-size: 14px;
}

.change-negative {
    color: #dc3545;
    font-size: 14px;
}

.stocks-list {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    padding: 20px;
    margin-bottom: 40px;
    overflow-x: auto;
}

.stocks-list table {
    width: 100%;
    border-collapse: collapse;
    min-width: 600px;
    table-layout: auto;
}

.stocks-list th,
.stocks-list td {
    padding: 10px;
    text-align: left;
    font-family: Arial, sans-serif;
    font-size: 14px;
    color: #333;
    width: auto;
}

.stocks-list th {
    background-color: #f8f8f8;
    font-weight: bold;
    white-space: nowrap;
}

.stocks-list td {
    border-bottom: 1px solid #eee;
    white-space: nowrap;
}

.stocks-list .mini-graph {
    width: 80px;
    height: 30px;
    margin: 0 auto;
}

.stocks-list .mini-graph svg {
    width: 100%;
    height: 100%;
}

.stocks-news {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    padding: 20px;
}

.stocks-news .news-item {
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

.stocks-news .news-title {
    font-size: 16px;
    font-weight: bold;
    color: #333;
    margin-bottom: 5px;
}

.stocks-news .news-summary {
    font-size: 14px;
    color: #555;
    margin-bottom: 5px;
}

.stocks-news .news-date {
    font-size: 12px;
    color: #666;
    display: block;
    margin-top: 5px;
}

.stocks-news .source,
.stocks-list .source {
    font-size: 12px;
    color: #0066cc;
    margin-top: 10px;
    display: block;
    text-align: right;
}

.stocks-news .source a,
.stocks-list .source a {
    color: #0066cc;
    text-decoration: none;
}

.stocks-news .source a:hover,
.stocks-list .source a:hover {
    color: #003366;
}

@media (max-width: 768px) {
    .indicator-item {
        width: 100%;
    }
    .stocks-section h2,
    .stocks-section h3 {
        font-size: 20px;
    }
    .stocks-list table {
        min-width: 400px;
        font-size: 10px;
    }
    .stocks-list th,
    .stocks-list td {
        padding: 5px;
        font-size: 10px;
    }
    .stocks-list td:nth-child(1),
    .stocks-list td:nth-child(2),
    .stocks-list td:nth-child(3) {
        font-size: 9px;
    }
    .stocks-list .mini-graph {
        width: 60px;
        height: 20px;
    }
}



/* Modul 4 */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

.indicators-section {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
    background-color: #f4f4f9;
}

.indicators-section h2 {
    text-align: center;
    color: #333;
    margin-bottom: 30px;
    font-size: 24px;
}

.indicators-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.indicators-section .indicator-item {
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    width: 360px;
    padding: 20px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    transition: transform 0.3s, border-left-color 0.3s;
    border-left: 4px solid transparent;
}

.indicators-section .indicator-item:hover {
    transform: translateY(-5px);
}

/* Dinamikus színes csíkok a kártyákhoz (15 kártya van, ciklikusan ismétlődnek a színek) */
.indicators-section .indicator-item.item-1 {
    border-left-color: #dc3545; /* Piros */
}
.indicators-section .indicator-item.item-1:hover {
    border-left-color: #ff4040;
}

.indicators-section .indicator-item.item-2 {
    border-left-color: #28a745; /* Zöld */
}
.indicators-section .indicator-item.item-2:hover {
    border-left-color: #2ecc71;
}

.indicators-section .indicator-item.item-3 {
    border-left-color: #0066cc; /* Kék */
}
.indicators-section .indicator-item.item-3:hover {
    border-left-color: #3399ff;
}

.indicators-section .indicator-item.item-4 {
    border-left-color: #ffc107; /* Sárga */
}
.indicators-section .indicator-item.item-4:hover {
    border-left-color: #ffd700;
}

.indicators-section .indicator-item.item-5 {
    border-left-color: #17a2b8; /* Türkiz */
}
.indicators-section .indicator-item.item-5:hover {
    border-left-color: #1abc9c;
}

.indicators-section .indicator-item.item-6 {
    border-left-color: #6f42c1; /* Lila */
}
.indicators-section .indicator-item.item-6:hover {
    border-left-color: #8e44ad;
}

.indicators-section .indicator-item.item-7 {
    border-left-color: #dc3545; /* Piros */
}
.indicators-section .indicator-item.item-7:hover {
    border-left-color: #ff4040;
}

.indicators-section .indicator-item.item-8 {
    border-left-color: #28a745; /* Zöld */
}
.indicators-section .indicator-item.item-8:hover {
    border-left-color: #2ecc71;
}

.indicators-section .indicator-item.item-9 {
    border-left-color: #0066cc; /* Kék */
}
.indicators-section .indicator-item.item-9:hover {
    border-left-color: #3399ff;
}

.indicators-section .indicator-item.item-10 {
    border-left-color: #ffc107; /* Sárga */
}
.indicators-section .indicator-item.item-10:hover {
    border-left-color: #ffd700;
}

.indicators-section .indicator-item.item-11 {
    border-left-color: #17a2b8; /* Türkiz */
}
.indicators-section .indicator-item.item-11:hover {
    border-left-color: #1abc9c;
}

.indicators-section .indicator-item.item-12 {
    border-left-color: #6f42c1; /* Lila */
}
.indicators-section .indicator-item.item-12:hover {
    border-left-color: #8e44ad;
}

.indicators-section .indicator-item.item-13 {
    border-left-color: #dc3545; /* Piros */
}
.indicators-section .indicator-item.item-13:hover {
    border-left-color: #ff4040;
}

.indicators-section .indicator-item.item-14 {
    border-left-color: #28a745; /* Zöld */
}
.indicators-section .indicator-item.item-14:hover {
    border-left-color: #2ecc71;
}

.indicators-section .indicator-item.item-15 {
    border-left-color: #0066cc; /* Kék */
}
.indicators-section .indicator-item.item-15:hover {
    border-left-color: #3399ff;
}

.indicators-section .indicator-item .fa {
    font-size: 40px;
    color: #0066cc;
    transition: color 0.3s;
}

.indicators-section .indicator-item:hover .fa {
    color: #003366;
}

.indicators-section .indicator-text {
    flex: 1;
    text-align: left;
}

.indicators-section .indicator-text p {
    font-family: Arial, sans-serif;
    font-size: 14px;
    color: #333;
    margin: 0 0 10px;
    line-height: 1.5;
    text-align: left;
}

.indicators-section .indicator-text ul {
    list-style: none;
    margin: 10px 0 0;
    padding-left: 10px;
    text-align: left;
}

.indicators-section .indicator-text ul li {
    font-size: 13px;
    color: #555;
    margin-bottom: 5px;
    position: relative;
    text-align: left;
}

.indicators-section .indicator-text ul li:before {
    content: "•";
    color: #0066cc;
    position: absolute;
    left: -10px;
}

.indicators-section .indicator-text .source {
    font-size: 12px;
    color: #0066cc;
    margin-top: 10px;
    display: block;
    text-align: left;
}

.indicators-section .indicator-text .source a {
    color: #0066cc;
    text-decoration: none;
    font-size: 10px;
}

.indicators-section .indicator-text .source a:hover {
    color: #003366;
}

@media (max-width: 768px) {
    .indicators-section .indicator-item {
        width: 100%;
    }
    .indicators-section h2 {
        font-size: 20px;
    }
    .indicators-section .indicator-item .fa {
        font-size: 36px;
    }
}