:root {
    --content-bg-image: url('/static/background.jpg');
}

.app-content-bg {
    background-image: linear-gradient(rgba(248, 250, 252, 0.78), rgba(248, 250, 252, 0.88)), var(--content-bg-image);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    border-radius: 1.25rem;
}

.currency-flag {
    width: 20px;
    height: 14px;
    border-radius: 2px;
    object-fit: cover;
    box-shadow: 0 0 0 1px rgba(148, 163, 184, 0.35);
}

.pricing-table tbody tr:last-child {
    border-bottom: 0;
}

@media (max-width: 1024px) {
    .app-content-bg {
        border-radius: 0.75rem;
    }
}
