@import url("https://fonts.googleapis.com/css?family=Roboto+Slab:400,300&amp;lang=en");
@import url("https://fonts.googleapis.com/css2?family=Nunito:wght@400;600;700;800&display=swap");

*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Nunito', sans-serif;
    min-height: 100vh;
    background: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ma-shell {
    width: 100%;
    max-width: 640px;
    background: #ffffff;
    border-radius: 32px;
    overflow: hidden;
    box-shadow: 0 8px 48px rgba(0, 0, 0, 0.13);
    margin: 2rem 1.5rem;
    animation: ma-rise 0.5s cubic-bezier(0.16, 1, 0.3, 1) both;
}

@keyframes ma-rise {
    from {
        opacity: 0;
        transform: translateY(16px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ── Pink header ── */
.ma-header {
    background: #d51f5a;
    padding: 2.75rem 2.5rem 4.5rem;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.ma-blob {
    position: absolute;
    border-radius: 50%;
}

.ma-blob-1 {
    width: 320px;
    height: 320px;
    background: rgba(255, 255, 255, 0.09);
    top: -100px;
    right: -80px;
}

.ma-blob-2 {
    width: 220px;
    height: 220px;
    background: rgba(255, 255, 255, 0.07);
    bottom: -80px;
    left: -60px;
}

.ma-blob-3 {
    width: 150px;
    height: 150px;
    background: rgba(255, 255, 255, 0.06);
    top: 10px;
    left: 20px;
}

.ma-icon-wrap {
    position: relative;
    z-index: 1;
    width: 90px;
    height: 90px;
    border-radius: 22px;
    background: #ffffff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    overflow: hidden;
}

.ma-icon-wrap img {
    width: 90px;
    height: 90px;
    border-radius: 22px;
}

.ma-header h1 {
    position: relative;
    z-index: 1;
    font-size: 1.9rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 0.4rem;
    letter-spacing: -0.3px;
}

.ma-header p {
    position: relative;
    z-index: 1;
    font-size: 0.95rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.82);
}

/* ── Content panel ── */
.ma-content {
    background: #ffffff;
    border-radius: 28px 28px 0 0;
    margin-top: -28px;
    position: relative;
    z-index: 2;
    padding: 2.25rem 2.5rem 2.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.ma-content-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: #222222;
    margin-bottom: 0.35rem;
    text-align: center;
}

.ma-content-sub {
    font-size: 0.88rem;
    color: #999999;
    font-weight: 400;
    text-align: center;
    margin-bottom: 1.75rem;
}

.ma-content ul,
.ma-content ol {
    display: inline-block;
    text-align: left;
    margin: 0.75rem 0 0.75rem 1.25rem;
    padding-left: 1rem;
}

.ma-content li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.ma-content p {
    text-align: left;
    line-height: 1.7;
    color: #444444;
    margin-bottom: 0.75rem;
}

.ma-content h2,
.ma-content h3 {
    text-align: center;
}

/* ── Feature pills ── */
.ma-pills {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.ma-pill {
    background: #fff5f7;
    border: 1.5px solid #f5c0cf;
    border-radius: 100px;
    padding: 0.35rem 1rem;
    font-size: 0.78rem;
    font-weight: 700;
    color: #d51f5a;
}

/* ── Store badges — side by side, 210px clips SVG internal padding ── */
.ma-badges {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 1.25rem;
}

.ma-badge-link {
    display: block;
    width: 210px;
    overflow: hidden;
    line-height: 0;
    border-radius: 10px;
    transition: transform 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275),
    filter 0.2s ease;
}

.ma-badge-link:hover {
    transform: translateY(-3px) scale(1.05);
    filter: drop-shadow(0 6px 16px rgba(213, 31, 90, 0.35));
}

.ma-badge-link:active {
    transform: scale(0.97);
}

.ma-badge-link img {
    display: block;
    width: 210px;
    height: auto;
}

/* ── Accent bar ── */
.ma-accent-bar {
    width: 44px;
    height: 3px;
    border-radius: 2px;
    background: linear-gradient(90deg, #d51f5a, #fcb651);
    margin: 2rem auto 1.5rem;
}

.ma-footer-nav {
    display: inline-flex;
    align-items: stretch;
    justify-content: center;
    border: 1.5px solid #f0c0cc;
    border-radius: 100px;
    overflow: hidden;
    margin-bottom: 1rem;
}

.ma-footer-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 2.5rem 2.5rem;
    width: 100%;
}

.ma-footer-nav a {
    display: block;
    font-size: 0.78rem;
    font-weight: 700;
    color: #c0607a;
    text-decoration: none;
    padding: 0.5rem 1.25rem;
    white-space: nowrap;
    transition: background 0.15s ease, color 0.15s ease;
}

.ma-footer-nav a:hover {
    background: #d51f5a;
    color: #ffffff;
}

.ma-sep {
    width: 1.5px;
    background: #f0c0cc;
    flex-shrink: 0;
    align-self: stretch;
}

.ma-home-link-wrap {
    margin-bottom: 1.25rem;
    text-align: center;
    width: 100%;
}

.ma-home-divider {
    height: 1px;
    background: #f0f0f0;
    width: 60%;
    margin: 0 auto 1.25rem;
}

.ma-home-link {
    font-size: 0.82rem;
    font-weight: 700;
    color: #d51f5a;
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.ma-home-link:hover {
    text-decoration: underline;
    opacity: 0.8;
}

.ma-copyright {
    font-size: 0.72rem;
    color: #cccccc;
    text-align: center;
}

/* ── Responsive ── */
@media (max-width: 600px) {
    .ma-shell {
        margin: 0;
        border-radius: 0;
        box-shadow: none;
        min-height: 100vh;
    }

    .ma-header h1 {
        font-size: 1.6rem;
    }

    .ma-badges {
        flex-direction: column;
        gap: 0.75rem;
    }

    .ma-footer-nav {
        display: inline-flex;
        flex-direction: column;
        border-radius: 16px;
        width: auto;
        margin-left: auto;
        margin-right: auto;
    }

    .ma-sep {
        width: 100%;
        height: 1.5px;
    }

    .ma-footer-nav a {
        text-align: center;
        padding: 0.75rem;
    }
}

.container {
    padding: 25px;
}

tbody.ui-datatable-data tr.ui-widget-content.greenBackground,
tbody.ui-datatable-data tr.ui-widget-content.greenBackground td.ui-widget-content {
    background-color: #c8f0d8 !important;
    color: #145c35 !important;
}

tbody.ui-datatable-data tr.ui-widget-content.greenBackground td,
tbody.ui-datatable-data tr.ui-widget-content.greenBackground td * {
    color: #145c35 !important;
}

tbody.ui-datatable-data tr.ui-widget-content.redBackground,
tbody.ui-datatable-data tr.ui-widget-content.redBackground td.ui-widget-content {
    background-color: #ffd6e0 !important;
    color: #a0103e !important;
}

tbody.ui-datatable-data tr.ui-widget-content.redBackground td,
tbody.ui-datatable-data tr.ui-widget-content.redBackground td * {
    color: #a0103e !important;
}

tbody.ui-datatable-data tr.ui-widget-content.greyBackground,
tbody.ui-datatable-data tr.ui-widget-content.greyBackground td.ui-widget-content {
    background-color: #e4e4e4 !important;
    color: #555555 !important;
}

tbody.ui-datatable-data tr.ui-widget-content.greyBackground td,
tbody.ui-datatable-data tr.ui-widget-content.greyBackground td * {
    color: #555555 !important;
}