/* /Components/StatisticCard.razor.rz.scp.css */
.statistic-card[b-b2sexxx3r5] {
    border-radius: 8px;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    border: 1px solid var(--sh-gray-400);
    background-color: var(--sh-white);
    color: var(--sh-gray-600);
}

.statistic-title[b-b2sexxx3r5] {
    display: flex;
    align-items: center;
    font-weight: 600;
}

.statistic-icon[b-b2sexxx3r5] {
    margin-right: 0.5rem;
    color: black;
    font-size: 1.5rem;
}

.statistic-value[b-b2sexxx3r5] {
    font-size: 2rem;
    font-weight: bold;
    margin: 0.5rem 0;
}

.statistic-description[b-b2sexxx3r5] {
    font-size: 0.875rem;
}
/* /Layout/MainLayout.razor.rz.scp.css */
.header[b-6uhmdowpdo] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.header-title[b-6uhmdowpdo] {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

ul[b-6uhmdowpdo] {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

li[b-6uhmdowpdo] {
    float: right;
}

li a[b-6uhmdowpdo] {
    display: block;
    color: var(--sh-white);
    text-align: center;
    text-decoration: none;
}

li a:hover[b-6uhmdowpdo] {
    color: var(--sh-gray-300);
}

.page[b-6uhmdowpdo] {
    position: relative;
    display: flex;
    flex-direction: column;
    background-color: #f6f7f9;
    width: 100%;
    height: 100%;
    padding-bottom: 2rem;
}

main[b-6uhmdowpdo] {
    display: flex;
    flex: 1;
    width: 100%;
    justify-content: center;
}

.sidebar[b-6uhmdowpdo] {
    background-image: linear-gradient(180deg, rgb(5, 39, 103) 0%, #3a0647 70%);
}

.top-row[b-6uhmdowpdo] {
    background-color: #f7f7f7;
    border-bottom: 1px solid #d6d5d5;
    justify-content: flex-end;
    height: 3.5rem;
    display: flex;
    align-items: center;
}

    .top-row[b-6uhmdowpdo]  a, .top-row[b-6uhmdowpdo]  .btn-link {
        white-space: nowrap;
        margin-left: 1.5rem;
        text-decoration: none;
    }

    .top-row[b-6uhmdowpdo]  a:hover, .top-row[b-6uhmdowpdo]  .btn-link:hover {
        text-decoration: underline;
    }

    .top-row[b-6uhmdowpdo]  a:first-child {
        overflow: hidden;
        text-overflow: ellipsis;
    }

@media (max-width: 640.98px) {
    .top-row[b-6uhmdowpdo] {
        justify-content: space-between;
    }

    .top-row[b-6uhmdowpdo]  a, .top-row[b-6uhmdowpdo]  .btn-link {
        margin-left: 0;
    }
}

@media (min-width: 641px) {
    .page[b-6uhmdowpdo] {
        flex-direction: row;
    }

    .sidebar[b-6uhmdowpdo] {
        width: 250px;
        height: 100vh;
        position: sticky;
        top: 0;
    }

    .top-row[b-6uhmdowpdo] {
        position: sticky;
        top: 0;
        z-index: 1;
    }

    .top-row.auth[b-6uhmdowpdo]  a:first-child {
        flex: 1;
        text-align: right;
        width: 0;
    }

    .top-row[b-6uhmdowpdo], article[b-6uhmdowpdo] {
        padding-left: 2rem !important;
        padding-right: 1.5rem !important;
    }
}
/* /Pages/Home.razor.rz.scp.css */
.title[b-f71b0zsq26] {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.donate[b-f71b0zsq26] {
    width: 100%;
    border-radius: 8px;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border: 1px solid var(--sh-gray-400);
    background-color: var(--sh-white);
    color: var(--sh-gray-600);
}

.donate-header[b-f71b0zsq26] {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.donate-header-title[b-f71b0zsq26] {
    font-size: 1.5rem;
    font-weight: 600;
    color: #000000;
}

.donate-cards[b-f71b0zsq26] {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
    width: 100%;
}

.donate-card[b-f71b0zsq26] {
    background-color: var(--sh-gray-50);
    border: 1px solid var(--sh-gray-200);
    padding: 1.5rem;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.donate-card-title[b-f71b0zsq26] {
    font-weight: bold;
    margin-bottom: 1rem;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.donate-card-qrcode[b-f71b0zsq26] {
    width: 150px;
    height: 150px;
    background-color: #fff;
    margin-bottom: 1rem;
    border-radius: 6px;
    border: 2px dashed var(--sh-gray-200);
}

.donate-card-address[b-f71b0zsq26] {
    font-family: monospace;
    font-size: 0.9rem;
    width: 100%;
    background-color: #fff;
    padding: 0.5rem;
    border: 1px solid var(--sh-gray-300);
    word-break: break-all;
    margin: 0.5rem 0;
}

.donate-card-copy-address[b-f71b0zsq26] {
    background-color: var(--sh-gray-600);
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    width: 100%;
    cursor: pointer;
    transition: background-color 0.3s;
}

.donate-card-copy-address:hover[b-f71b0zsq26] {
    background-color: var(--sh-gray-700);
}

.donate-footer[b-f71b0zsq26] {
    margin-top: 1rem;
    text-align: center;
}

/* Tablets */
@media (max-width: 1023px) {
    .bottom-row[b-f71b0zsq26] {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile Phones */
@media (max-width: 768px) {
    .donate-cards[b-f71b0zsq26] {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 639px) {
    .top-row[b-f71b0zsq26],
    .bottom-row[b-f71b0zsq26] {
        grid-template-columns: 1fr;
    }
}
