.logo {
    font-family: var(--bs-font-monospace);
    font-weight: 900;
    color: #28a745;
}

.logo-description {
    font-family: var(--bs-font-monospace);
}        

body {
    font-family: 'Nunito', sans-serif;
    background: #f8f9fa;
    padding: 20px;
}
.container {
    max-width: 800px;
    margin: auto;
}

.crypto-icon, .fiat-icon {
    width: 26px;
    height: 26px;
    margin-right: 10px;
}
.fiat-flag {
    font-size: 20px;
    margin-right: 10px;
}
.url-box {
    background: #fff;
    padding: 10px;
    border-radius: 5px;
    margin-bottom: 15px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    display: flex;
    justify-content: space-between;
    align-items: center;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}
.url-box::-webkit-scrollbar {
    height: 6px;
}
.url-box::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 3px;
}
.url-box::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 3px;
}
.url-box::-webkit-scrollbar-thumb:hover {
    background: #555;
}
.price-card-desktop {
    display: block;
}
.price-card-mobile {
    display: none;
}
@media (max-width: 768px) {
    .price-card-desktop {
        display: none;
    }
    .price-card-mobile {
        display: block;
    }
    .price-card-mobile h3 {
        font-size: 1.2rem;
        flex-direction: column;
        gap: 5px;
    }
    .price-card-mobile .price-header {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 5px;
    }
    .price-card-mobile .price-value {
        font-size: 1.4rem;
        color: #28a745;
        font-weight: 700;
    }
    .container {
        padding: 10px;
    }
    .col-md-6 {
        margin-bottom: 15px;
    }
    .select2-container {
        margin-bottom: 15px;
    }
}

.copy-btn {
    background: #007bff;
    color: #fff;
    border: none;
    padding: 5px 10px;
    cursor: pointer;
    border-radius: 3px;
}
.copy-btn:hover {
    background: #0056b3;
}
.faq {
    text-align: left;
    margin-top: 30px;
}
footer {
    margin-top: 30px;
    padding: 10px;
    font-size: 0.9em;
    color: #555;
    text-align: center;
}
.formula-help {
    margin-top: 10px;
    font-size: 0.9em;
}
.formula-help a {
    color: #007bff;
    text-decoration: none;
}
.formula-help a:hover {
    text-decoration: underline;
}
.card {
    background: #fff;
    border: none;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
.card-body h3 {
    margin: 0;
    display: flex;

    gap: 10px;
    font-size: 1.5rem;
    color: #333;
}
#price-value {
    font-weight: 700;
    color: #28a745;
}
.price-value{
    color: #28a745 !important;
}

#price-crypto-icon {
    width: 32px;
    height: 32px;
}
#price-fiat-flag {
    font-size: 24px;
}

.card {
    border-radius: 12px !important;
    border: 2px solid #212529 !important;
}

.btn {
    font-weight: 700 !important;
    border: 2px solid #212529 !important;
}
body {
    background-color: #fbfaf8 !important;
}

#price-crypto-code{
    font-weight: 700;
}
#price-fiat-code{
    font-weight: 700;
}

#price-crypto-code-mobile{
    font-weight: 700;
}
#price-fiat-code-mobile{
    font-weight: 700;
}

.convert-list {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 10px;
    margin: 20px 0;
}
.convert-list a {
    display: flex;
    align-items: center;
    padding: 10px;
    text-decoration: none;
    color: #212529;
    background: #fff;
    border: 2px solid #212529;
    border-radius: 12px;
    font-weight: 700;
    transition: all 0.3s ease;
}
.convert-list a:hover {
    background: #212529;
    color: #fff;
}
.convert-list img {
    width: 24px;
    height: 24px;
    margin-right: 10px;
}
.crypto-logo {
    width: 64px;
    height: 64px;
    margin-right: 15px;
} 
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
}

