@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700&family=Inter:wght@400;500;600&display=swap');

body {
    font-family: 'Inter', system-ui, sans-serif;
}

.title-font {
    font-family: 'Playfair Display', Georgia, serif;
    letter-spacing: -0.025em;
}

.prayer-item {
    transition: all 0.2s cubic-bezier(0.4, 0.0, 0.2, 1);
}

.prayer-item:hover {
    background-color: #f8f8f8;
    transform: translateX(4px);
}

.prayer-text {
    font-size: 15.5px;
    line-height: 1.75;
}

.mini-app-container {
    box-shadow: 0 0 0 1px #e5e5e5;
}

/* Screens that lock the app to the visible viewport height so their pinned
   bottom bars (pagination / action buttons) stay on screen. 100dvh accounts
   for the mobile browser URL bar that shrinks the visible area. */
.pinned-screen {
    height: 100vh;
    height: 100dvh;
}