* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html,
body {
    margin: 0;
    padding: 0;
}

body {
    font-family: "Segoe UI", Arial, sans-serif;
    background: #fff;
    padding-top: 88px;
}

/* FIXED HEADER */
.sticky-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 99999;
    background: #fff;
}

/* HEADER */
.site-header {
    width: 100%;
    height: 50px;
    background: #fff;
    border-bottom: 1px solid #eee;
    position: relative;
    padding: 0 8px;
}

/* HEADER INNER */
.header-inner {
    width: 100%;
    max-width: 1030px;
    height: 50px;
    margin: 0 auto;
    padding: 0;
    display: flex;
    align-items: center;
    position: relative;
}

/* LOGO */
.logo {
    display: flex;
    align-items: center;
    color: #222;
    text-decoration: none;
    font-size: 16px;
    font-weight: 700;
    white-space: nowrap;
}
.logo img {
    width: 27px;
    height: 27px;
    object-fit: contain;
    margin-right: 5px;
}

/* MAIN MENU */
.nav-menu {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 17px;
}
.nav-menu a {
    color: #333;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
}
.nav-menu a:hover {
    color: #777;
}

/* HEADER RIGHT */
.header-right {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 5px;
}

/* SEARCH */
.search-box {
    display: flex;
    align-items: center;
}
.search-box input {
    width: 145px;
    height: 31px;
    padding: 0 9px;
    border: 1px solid #ddd;
    border-radius: 6px;
    outline: none;
    background: #fff;
    color: #333;
    font-size: 12px;
}
.search-box input:focus {
    border-color: #aaa;
}
.search-box input::placeholder {
    color: #999;
}

/* PROFILE */
.profile {
    width: 31px;
    height: 31px;
    border-radius: 50%;
    background: #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #333;
    font-size: 15px;
}

/* MENU TOGGLE */
.menu-toggle {
    width: 31px;
    height: 31px;
    border: 1px solid #ddd;
    border-radius: 6px;
    background: #fff;
    color: #333;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    line-height: 1;
}

/* ACTIVE MENU */
.nav-menu.active {
    display: flex;
}

/* SECOND NAVIGATION */
.second-nav {
    width: 100%;
    height: 38px;
    background: #ddd;
    border-bottom: 1px solid #eee;
    position: relative;
    padding: 0 8px;
}

/* SECOND NAV INNER */
.second-nav-inner {
    width: 100%;
    max-width: 1030px;
    height: 38px;
    margin: 0 auto;
    padding: 0 10px;
    display: flex;
    align-items: center;
    gap: 20px;
    overflow-x: auto;
    scrollbar-width: none;
}
.second-nav-inner::-webkit-scrollbar {
    display: none;
}

/* SECOND NAV LINK */
.second-nav a {
    color: #555;
    text-decoration: none;
    font-size: 12px;
    font-weight: 500;
    white-space: nowrap;
}
.second-nav a:hover {
    color: #222;
}

/* TABLET */
@media (max-width: 900px) {
    .nav-menu {
        gap: 13px;
    }
    .nav-menu a {
        font-size: 14px;
    }
    .search-box input {
        width: 125px;
    }
}

/* MOBILE */
@media (max-width: 768px) {
    /* HEADER */
    .site-header {
        height: 47px;
    }
    .header-inner {
        height: 47px;
        padding: 0;
    }
    /* LOGO */
    .logo {
        font-size: 15px;
    }
    .logo img {
        width: 25px;
        height: 25px;

        margin-right: 4px;
    }
    /* RIGHT */
    .header-right {
        gap: 4px;
    }
    /* SEARCH */
    .search-box input {
        width: 105px;

        height: 30px;

        font-size: 12px;
    }
    /* PROFILE */
    .profile {
        width: 30px;
        height: 30px;
        font-size: 14px;
    }
    /* TOGGLE */
    .menu-toggle {
        width: 30px;
        height: 30px;
        font-size: 16px;
    }
    /* MOBILE MAIN MENU */
    .nav-menu {
        position: absolute;
        top: 47px;
        left: 0;
        width: 100%;
        transform: none;
        padding: 4px 10px;
        background: #fff;
        border-bottom: 1px solid #eee;
        box-shadow: 0 3px 8px rgba(0, 0, 0, 0.04);
        display: none;
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
    }
    .nav-menu.active {
        display: flex;
    }
    .nav-menu a {
        width: 100%;
        padding: 10px 3px;
        border-bottom: 1px solid #f1f1f1;
        font-size: 12px;
    }
    .nav-menu a:last-child {
        border-bottom: none;
    }
    /* SECOND NAV */
    .second-nav {
        height: 36px;
    }
    .second-nav-inner {
        height: 36px;
        padding: 0 8px;
        gap: 16px;
    }
    .second-nav a {
        font-size: 12px;
    }
    /* BODY SPACE */
    body {
        padding-top: 83px;
    }
}

/* SMALL MOBILE */
@media (max-width: 480px) {
    .header-inner {
        padding: 0;
    }
    .logo {
        font-size: 14px;
    }
    .logo img {
        width: 24px;
        height: 24px;
    }
    .search-box input {
        width: 95px;
    }
}

/* VERY SMALL MOBIL */
@media (max-width: 380px) {
    .logo span {
        display: none;
    }
    .search-box input {
        width: 85px;
    }
}

/* ANAH SECOND MENU */
.second-nav-arrow {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 24px;
    height: auto;
    border: 0;
    outline: 0;
    background: #ddd;
    color: #555;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 0;
    margin: 0;
    cursor: pointer;
    z-index: 20;
    font-size: 13px;
    line-height: 1;
    box-shadow: none;
}
.second-nav-arrow:hover {
    background: #ddd;
    color: #222;
}
.second-nav-inner {
    padding-left: 0;
    padding-right: 0;
}
.second-nav-left { 
    left: max(0px, calc((100% - 1030px) / 2)); 
} 
.second-nav-right { 
    right: max(0px, calc((100% - 1030px) / 2)); 
}
@media (max-width: 768px) {
    .second-nav-arrow {
        width: 25px;
    }
    .second-nav-inner {
        padding: 0;
    }
}

/* Breadcrumb */
.breadcrumb-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 8px;
    background-color: #f8f9fa;
    border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
    max-width: 1030px;
    margin: 10px auto;
}
.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    margin: 0;
    padding: 0;
    font-family: sans-serif;
    font-size: 14px;
}
.breadcrumb-item + .breadcrumb-item::before {
    content: "\f105"; /* Unicode untuk fa-angle-right */
    font-family: "FontAwesome";
    padding: 0 8px;
    color: #6c757d;
}
.breadcrumb-item a {
    color: #555;
    text-decoration: none;
}
.breadcrumb-item a:hover {
    text-decoration: underline;
}
.breadcrumb-item.active {
    color: #4b4b4b;
    font-size: 14px;
    font-weight: 600;
}
.share-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 3px 12px;
    font-size: 14px;
    color: #333;
    background-color: #fff;
    border: 1px solid #ccc;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.2s;
}
.share-btn:hover {
    background-color: #e9ecef;
}

/* MAIN CONTAINER */
.container {
    width: 100%;
    max-width: 1030px;
    margin: 10px auto;
    display: grid;
    grid-template-columns:
        280px
        minmax(0, 1fr)
        280px;
    gap: 16px;
}
.content,
.sidebar-left,
.sidebar-right {
    min-width: 0;
    background: #fff;
    padding: 0;
}
.content h1 {
    font-family: 'Roboto', sans-serif;
    font-size: 1.5em;
    font-weight: bold;
    color: #2e2e2e;
    text-align: left;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.12);
}
.content p {
    margin: 0 0 15px;
    line-height: 1.2;
    
}
.sidebar-left {
    order: 1;
}
.content {
    order: 2;
}
.sidebar-right {
    order: 3;
}
.sidebar-left.off {
    display: none;
}
.container.left-off {
    grid-template-columns:
        minmax(0, 1fr)
        280px;
}
.sidebar-right.off {
    display: none;
}
.container.right-off {
    grid-template-columns:
        280px
        minmax(0, 1fr);
}
.container.both-off {
    grid-template-columns:
        minmax(0, 1fr);
}
@media (max-width: 800px) {
    .container,
    .container.left-off,
    .container.right-off,
    .container.both-off {
        grid-template-columns: 1fr;
    }
    .content {
        order: 1;
    }
    .sidebar-left {
        order: 2;
    }
    .sidebar-right {
        order: 3;
    }
}
@media (max-width: 1080px) {
    .container {
        padding: 0 8px;
    }
}


/* CURRENCY CARD */
.currency-card {
    width: 100%;
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    gap: 20px;
    padding: 0;
    box-sizing: border-box;
    background: #fff;
}
.currency-info {
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.currency-price-line {
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 8px;
    line-height: 1.2;
}
.currency-price {
    font-size: 22px;
    font-weight: 700;
    color: #202124;
}
.currency-up {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 14px;
    color: #188038;
}
.currency-up .arrow {
    font-size: 12px;
}
.currency-down {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 14px;
    color: #d93025;
}
.currency-down .arrow {
    font-size: 12px;
}
.currency-percent-up {
    font-size: 14px;
    font-weight: 500;
    color: #188038;
    background: #e6f4ea;
    padding: 3px 6px;
    border-radius: 4px;
}
.currency-percent-down {
    font-size: 14px;
    font-weight: 500;
    color: #d93025;
    background: #fce8e6;
    padding: 3px 6px;
    border-radius: 4px;
}
.currency-date {
    margin-top: 5px;
    font-size: 13px;
    color: #5f6368;
}
.currency-flag {
    width: 82px;
    height: 62px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f9fa;
    border: 1px solid #e1e4e8;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}
.currency-flag img {
    width: 68px;
    height: 44px;
    display: block;
    object-fit: cover;
    border-radius: 5px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12);
}
@media (max-width: 480px) {
    .currency-card {
        padding: 0;
        gap: 12px;
    }
    .currency-price {
        font-size: 22px;
    }
    .currency-up,
    .currency-down {
        font-size: 12px;
    }
    .currency-percent-up,
    .currency-percent-down {
        font-size: 12px;
    }
    .currency-flag {
        width: 70px;
        height: 54px;
        border-radius: 10px;
    }
    .currency-flag img {
        width: 56px;
        height: 36px;
    }
}


/* Charts */
.filter-buttons {
    display: flex;
    gap: 20px;
    font-size: 12px;
    margin-bottom: 0px;
    margin-top: 5px;
}
.filter-buttons span {
    font-size: 14px;
}
.filter-btn {
    cursor: pointer;
    color: #888;
    font-weight: normal;
    position: relative;
}
.filter-btn.active {
    color: #007bff;
    font-weight: bold;
}
.filter-btn.active::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 100%;
    height: 2px;
    background-color: #007bff;
    border-radius: 2px;
}
#chart {
    width: 100%;
    max-width: 720px;
    height: 300px;
}

/* Perubahan Harga */
.perubahan-harga {
    margin-top: 5px;
    display: grid;
    gap: 3px;
    grid-template-columns: repeat(3, 1fr);
}
@media (min-width: 768px) {
    .perubahan-harga {
        grid-template-columns: repeat(6, 1fr);
    }
}
.perubahan-harga-card {
    background: white;
    padding: 5px;
    border-radius: 10px;
    border: 1px solid #ddd;
    text-align: center;
}
.perubahan-harga-waktu {
    display: inline-block;
    background: #fff;
    border-bottom: 1px solid #ddd;
    font-size: 12px;
    padding: 2px 6px;
    margin-bottom: 5px;
}
.perubahan-harga-price {
    font-size: 18px;
    font-weight: bold;
}
.perubahan-harga-rate {
    color: gray;
    font-size: 13px;
}
.perubahan-harga-diff {
    margin-top: 4px;
    font-size: 13px;
    font-weight: bold;
}
.perubahan-harga-up {
    color: #188038;
}
.perubahan-harga-down {
    color: #cc0000;
}




/* Tabs */
.tabs {
    display: flex;
    justify-content: center;
    padding: 5px 0;
}

.tabs-link {
    background-color: #f1f1f1;
    border: none;
    outline: none;
    cursor: pointer;
    padding: 8px 10px;
    margin: 0 2px;
    transition: 0.3s;
    font-size: 16px;
    border-radius: 5px;
}

.tabs-link:hover {
    background-color: #ddd;
}

.tabs-link.active {
    background-color: #ccc;
}

.tabs-content {
    display: none;
    border-top: none;
}

.tabs-content span {
    font-size: 16px;
    font-weight: 500;
    color: #4a4a4a;
}

.tabs-table {
    display: block;
    width: 100%;
    overflow-x: auto;
    white-space: nowrap;
}

#currency-rates {
    width: 100%;
    max-width: none;
}

#currency-rates table {
    border-collapse: collapse;
    margin: 25px 0;
    font-size: 18px;
    font-family: Arial, sans-serif;
    border: none;
    text-align: center;
    border-radius: 10px;
}

#currency-rates thead tr {
    background-color: #ddd;
    color: #2e2e2e;
    text-align: center;
    border: none;
}

#currency-rates th {
    padding: 8px 15px; 
    border: none;
}

#currency-rates td {
    padding: 3px 15px; 
    border: none;
}

#currency-rates tbody tr {
    border-bottom: 1px solid #dddddd;
    border: none;
    text-align: center;
}

#currency-rates tbody tr:nth-of-type(even) {
    background-color: #f3f3f3;
    border: none;
}

#currency-rates tbody tr:nth-of-type(odd) {
    background-color: #ffffff;
    border: none;
}

#currency-rates tbody tr:hover {
    background-color: #f1f1f1;
    border: none;
}

/* Currency Calculator */
.currency-calculator {
    padding: 5px;
    border: 1px solid #ddd;
    border-radius: 8px;
    background: #fbfbfb;
    font-family: Arial, sans-serif;
    margin-bottom: 8px;
}
.currency-calculator h2 {
    margin: 0 0 5px;
    padding: 4px 0;
    font-size: 18px;
    border-bottom: 1px solid #ddd;
}
.currency-calculator p {
    margin: 5px 0;
    color: #3d3d3d;
}
.amount {
    margin-bottom: 10px;
}
.amount input {
    width: 100%;
    box-sizing: border-box;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
}
.currency-row {
    display: flex;
}
.currency-row select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    flex: 1;
    padding: 8px;
    border: 1px solid #ddd;
    border-right: 0;
    border-radius: 5px 0 0 5px;
    background: #fff;
    font-size: 15px;
}
.currency-row button {
    padding: 1px 8px;
    border: 0;
    border-radius: 0 5px 5px 0;
    background: #fff;
    color: #000;
    cursor: pointer;
    border: 1px solid #ddd;
}
.currency-row button:hover {
    background: #ddd;
}


/* Sidebar Info Box */
.info-box {
    width: 100%;
    box-sizing: border-box;
    border: 1px solid #ddd;
    background: #fbfbfb;
    color: #202122;
    font-size: 14px;
    border-radius: 8px;
}

.info-box-title {
    padding: 8px 10px;
    background: #f0f0f0;
    border-bottom: 1px solid #ddd;
    font-size: 16px;
    font-weight: 700;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
}

.info-box-body {
    padding: 10px;
}

.info-box-name {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eaecf0;
}

.info-box-name img {
    width: 48px;
    height: 32px;
    object-fit: cover;
    border: 1px solid #c8ccd1;
}

.info-box-name h2 {
    margin: 0;
    font-size: 16px;
    line-height: 1.3;
    font-weight: 600;
}

.info-box-name span {
    color: #54595d;
    font-size: 13px;
}

.info-box-price {
    padding: 12px 0;
    border-bottom: 1px solid #eaecf0;
}

.info-box-price-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
}

.info-box-price-row strong {
    font-size: 20px;
    font-weight: 600;
}

.info-box-up {
    padding: 3px 6px;
    background: #dff3e4;
    color: #14866d;
    border-radius: 2px;
    font-size: 12px;
    font-weight: 600;
}

.info-box-down {
    padding: 3px 6px;
    background: #fee2e2;
    color: #b42318;
    border-radius: 2px;
    font-size: 12px;
    font-weight: 600;
}

.info-box-date {
    margin-top: 4px;
    color: #72777d;
    font-size: 12px;
}

.info-box-details {
    display: grid;
    grid-template-columns: 105px 1fr;
    margin: 0;
}

.info-box-details dt,
.info-box-details dd {
    margin: 0;
    padding: 8px 0;
    border-bottom: 1px solid #ddd;
}

.info-box-details dt {
    color: #54595d;
    font-weight: 400;
}

.info-box-details dd {
    text-align: right;
    font-weight: 500;
}

.info-box-details dt:last-of-type,
.info-box-details dd:last-of-type {
    border-bottom: 0;
}

.no-style,
.no-style:visited,
.no-style:hover,
.no-style:active {
    color: inherit;
    text-decoration: none;
}




.usd-convert {
    background: #fff;

    border-radius: 14px;
    overflow: hidden;
}

/* HEADER */
.usd-convert-header {
    padding: 5px 0;
    border-bottom: 1px solid #eee;
}

.usd-convert-header h2 {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
    color: #222;
}

.usd-convert-header p {
    margin: 5px 0 0;
    font-size: 13px;
    color: #777;
}

/* LIST */
.usd-convert-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}

/* ITEM */
.usd-convert-item {
    padding: 5px 0;
    display: grid;
    grid-template-columns: 100px 35px minmax(0, 1fr);
    align-items: center;
    column-gap: 12px;
    border-bottom: 1px solid #eee;
    box-sizing: border-box;
}

/* JARAK KIRI */
.usd-convert-item > div:first-child {
    margin-left: 2px;
}

/* JARAK KANAN */
.usd-convert-item > .idr-amount {
    margin-right: 20px;
}

/* GARIS TENGAH */
.usd-convert-item:nth-child(odd) {
    border-right:none;
}

.usd-convert-item:nth-last-child(-n+2) {
    border-bottom: 0;
}

/* USD */
.usd-amount {
    font-size: 15px;
    font-weight: 600;
    color: #222;
}

.usd-label {
    display: block;
    margin-top: 3px;
    font-size: 12px;
    color: #888;
    font-weight: 400;
}

/* ARROW */
.usd-arrow {
    text-align: center;
    font-size: 18px;
    color: #aaa;
}

/* IDR */
.idr-amount {
    text-align: right;
    font-size: 16px;
    font-weight: 600;
    color: #222;
    white-space: nowrap;
}

/* MOBILE */
@media (max-width: 600px) {

    .usd-convert-list {
        grid-template-columns: 1fr;
    }

    .usd-convert-item {
        grid-template-columns: 90px 35px minmax(0, 1fr);
    }

    .usd-convert-item > div:first-child {
        margin-left: 0;
    }

    .usd-convert-item > .idr-amount {
        margin-right: 15px;
    }

    .usd-convert-item:nth-child(odd) {
        border-right: 0;
    }

    .usd-convert-item:nth-last-child(-n+2) {
        border-bottom: 1px solid #eee;
    }

    .usd-convert-item:last-child {
        border-bottom: 0;
    }
}












/* Footer */
footer {
    margin-top: 20px;
    border-top: 1px solid #c8ccd1;
    background: #f8f9fa;
    color: #202122;
    font-size: 13px;
}
.footer-inner {
    max-width: 1030px;
    margin: 0 auto;
    padding: 10px 0 28px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 40px;
    grid-template-areas:
        "info logo"
        "links links"
        "copy copy";
    column-gap: 20px;
}
.footer-info {
    grid-area: info;
    color: #54595d;
    line-height: 1.6;
}
.footer-logo {
    grid-area: logo;
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
}
.footer-logo img {
    width: 32px;
    height: 32px;
    display: block;
}
.footer-links {
    grid-area: links;
    display: flex;
    flex-wrap: wrap;
    gap: 6px 12px;
}
.footer-links a {
    color: #2e2e2e;
    text-decoration: none;
}
.footer-links a:hover {
    text-decoration: none;
}
.footer-copy {
    grid-area: copy;
    margin-top: 14px;
    color: #54595d;
    line-height: 1.5;
}
@media (max-width: 1050px) {
    .footer-inner {
        padding: 10px 8px 24px;
    }
}
@media (max-width: 600px) {
    .footer-inner {
        padding: 10px 8px 24px;
        display: flex;
        flex-direction: column;
    }
    .footer-logo {
        order: 1;
        justify-content: flex-start;
        margin-bottom: 14px;
    }
    .footer-info {
        order: 2;
    }
    .footer-links {
        order: 3;
        margin-top: 16px;
    }
    .footer-copy {
        order: 4;
        margin-top: 14px;
    }

}















.discover-currency-grid {
    width: 100%;
    max-width: 1030px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(8, minmax(0, 1fr));
    gap: 3px;
    padding: 5px;
}

.discover-currency-card {
    min-width: 0;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 5px;
    padding: 5px;
    box-sizing: border-box;
}

.discover-currency-top,
.discover-currency-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 6px;
}

.discover-currency-top {
    margin-bottom: 0;
}

.discover-currency-name {
    display: flex;
    align-items: center;
    gap: 6px;
    min-width: 0;
}

.discover-currency-name img {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.discover-currency-name strong {
    font-size: 13px;
    font-weight: 600;
}

.discover-currency-percent,
.discover-currency-change {
    font-size: 11px;
    font-weight: 600;
    white-space: nowrap;
}

.discover-currency-price {
    font-size: 14px;
    font-weight: 700;
    white-space: nowrap;
}

.discover-currency-up {
    color: #16803c;
}

.discover-currency-down {
    color: #d93025;
}

/* TABLET */
@media (min-width: 1050px) {
    .discover-currency-grid {
        padding: 0;
    }
}
/* TABLET */
@media (max-width: 1100px) {
    .discover-currency-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}


/* MOBILE */
@media (max-width: 600px) {
    .discover-currency-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .discover-currency-card {
        padding: 5px;
    }
}

.discover-currency-heading {
    width: 100%;
    max-width: 1030px;
    margin: 0 auto 6px;
}

.discover-currency-description {
    width: 100%;
    max-width: 1030px;
    margin: 0 auto 12px;
    font-size: 14px;
    line-height: 1.5;
    color: #666;
}





.rate-notification {
    background: #fbfbfb;
    padding: 2px 5px;
    border-radius: 6px;
    font-size: 14px;
}
.rate-notification ul {
    margin: 0;
    padding-left: 20px;
}
.rate-notification li {
    padding: 2px 0;
}
.rate-notification .jual::marker {
    color: #dc2626;
}
.rate-notification .tengah::marker {
    color: #777;
}
.rate-notification .beli::marker {
    color: #16a34a;
}
.rate-notification strong {
    color: #222;
}