/* ========================================
   CSS Variables for Theme Support
   ======================================== */
:root {
    /* Light Theme Colors */
    --bg-gradient-start: #f0f9ff;
    --bg-gradient-mid: #fef9f5;
    --bg-gradient-end: #ecfdf5;

    --card-bg: rgba(255, 255, 255, 0.92);
    --card-border: rgba(148, 197, 253, 0.35);
    --card-shadow: rgba(15, 118, 110, 0.08);
    --card-shadow-hover: rgba(15, 118, 110, 0.12);

    --text-primary: #0f172a;
    --text-secondary: #64748b;
    --text-accent: #0284c7;
    --text-prayer-name: #036672;

    --countdown-bg: linear-gradient(135deg, #0ea5e9, #14b8a6);
    --countdown-text: #f8fafc;

    --prayer-active-bg: linear-gradient(135deg, #0f766e, #22d3ee);
    --prayer-active-text: #ecfeff;

    --spinner-bg: #d1fae5;
    --spinner-border: #059669;

    color-scheme: light;
}

/* Dark Theme */
[data-theme="dark"] {
    --bg-gradient-start: #0f172a;
    --bg-gradient-mid: #1e293b;
    --bg-gradient-end: #0f172a;

    --card-bg: rgba(30, 41, 59, 0.85);
    --card-border: rgba(71, 85, 105, 0.5);
    --card-shadow: rgba(0, 0, 0, 0.3);
    --card-shadow-hover: rgba(0, 0, 0, 0.4);

    --text-primary: #f1f5f9;
    --text-secondary: #94a3b8;
    --text-accent: #38bdf8;
    --text-prayer-name: #22d3ee;

    --countdown-bg: linear-gradient(135deg, #0369a1, #0f766e);
    --countdown-text: #f1f5f9;

    --prayer-active-bg: linear-gradient(135deg, #0e7490, #0891b2);
    --prayer-active-text: #f0f9ff;

    --spinner-bg: rgba(52, 211, 153, 0.2);
    --spinner-border: #10b981;

    color-scheme: dark;
}

/* ========================================
   Base Styles
   ======================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif;
    min-height: 100vh;
    background: linear-gradient(160deg, var(--bg-gradient-start) 0%, var(--bg-gradient-mid) 45%, var(--bg-gradient-end) 100%);
    padding: clamp(1rem, 4vw, 2.5rem) clamp(0.75rem, 5vw, 2rem);
    display: flex;
    justify-content: center;
    align-items: flex-start;
    overflow-x: hidden;
    overflow-y: auto;
    transition: background 0.3s ease;
}

.container {
    width: min(100%, 32rem);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: clamp(0.85rem, 2.5vw, 1.5rem);
}

/* ========================================
   Theme Toggle Button
   ======================================== */
.theme-toggle {
    position: fixed;
    top: 1rem;
    right: 1rem;
    z-index: 1000;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 2rem;
    padding: 0.35rem;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    box-shadow: 0 6px 20px var(--card-shadow);
    backdrop-filter: blur(8px);
}

.theme-btn {
    background: transparent;
    border: none;
    padding: 0.5rem;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.15rem;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.25rem;
    height: 2.25rem;
}

.theme-btn:hover {
    transform: scale(1.1);
    background: rgba(14, 165, 233, 0.1);
}

.theme-btn.active {
    background: var(--countdown-bg);
    box-shadow: 0 2px 8px rgba(14, 165, 233, 0.4);
}

/* ========================================
   Card Component
   ======================================== */
.card {
    background: var(--card-bg);
    border-radius: clamp(1rem, 2.8vw, 1.45rem);
    padding: clamp(1.15rem, 3.2vw, 1.75rem);
    box-shadow: 0 18px 40px var(--card-shadow), 0 6px 18px rgba(15, 23, 42, 0.04);
    border: 1px solid var(--card-border);
    backdrop-filter: blur(6px);
    transition: background 0.3s ease, border-color 0.3s ease;
}

/* ========================================
   Header
   ======================================== */
.header {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

#date {
    color: var(--text-primary);
    font-size: clamp(0.95rem, 2.6vw, 1.05rem);
    font-weight: 500;
    letter-spacing: 0.04em;
}

#clock {
    color: var(--text-primary);
    font-size: clamp(2.6rem, 9vw, 3.1rem);
    font-weight: 700;
    font-family: 'Courier New', monospace;
    letter-spacing: 0.06em;
    text-shadow: 0 10px 24px rgba(15, 118, 110, 0.18);
}

#location {
    color: var(--text-accent);
    font-weight: 600;
    font-size: clamp(0.95rem, 2.8vw, 1.05rem);
    letter-spacing: 0.04em;
}

/* ========================================
   Action Buttons (Share & Qibla)
   ======================================== */
.action-buttons {
    display: flex;
    gap: 0.75rem;
    margin-top: 0.5rem;
    justify-content: center;
}

.btn-action {
    background: var(--countdown-bg);
    color: var(--countdown-text);
    border: none;
    padding: 0.65rem 1.25rem;
    border-radius: 999px;
    font-weight: 600;
    font-size: clamp(0.85rem, 2.5vw, 0.95rem);
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 4px 12px rgba(14, 165, 233, 0.2);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-action:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(14, 165, 233, 0.3);
}

.btn-action:active {
    transform: translateY(0);
}

/* ========================================
   Qibla Compass
   ======================================== */
.qibla-compass {
    text-align: center;
    padding: 1.5rem;
}

.qibla-instructions {
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.08), rgba(5, 150, 105, 0.08));
    border: 1px solid rgba(14, 165, 233, 0.25);
    border-radius: 1rem;
    padding: 1.25rem;
    margin-bottom: 2rem;
    text-align: left;
    backdrop-filter: blur(4px);
}

.instruction-step {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    margin: 0.65rem 0;
    color: var(--text-primary);
    font-size: 0.9rem;
    line-height: 1.4;
}

.step-number {
    background: linear-gradient(135deg, #0ea5e9, #14b8a6);
    color: white;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.85rem;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(14, 165, 233, 0.3);
}

.compass-container {
    position: relative;
    width: 300px;
    height: 340px;
    margin: 2rem auto;
}

/* Top marker outside circle */
.compass-top-marker {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 30;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.marker-triangle {
    font-size: 2rem;
    line-height: 1;
    transition: all 0.4s ease;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.marker-label {
    font-size: 0.8rem;
    font-weight: 700;
    margin-top: 0.25rem;
    letter-spacing: 0.08em;
    transition: all 0.4s ease;
    text-transform: uppercase;
}

/* States for marker */
.compass-top-marker.correct .marker-triangle {
    color: #10b981;
    transform: scale(1.2);
}

.compass-top-marker.correct .marker-label {
    color: #10b981;
}

.compass-top-marker.incorrect .marker-triangle {
    color: #f59e0b;
}

.compass-top-marker.incorrect .marker-label {
    color: #f59e0b;
}

.compass-circle {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background:
        radial-gradient(circle at 30% 30%, rgba(14, 165, 233, 0.15), transparent 50%),
        linear-gradient(135deg, var(--card-bg) 0%, rgba(14, 165, 233, 0.05) 100%);
    border: 3px solid rgba(14, 165, 233, 0.3);
    box-shadow:
        0 0 0 1px rgba(14, 165, 233, 0.1),
        0 8px 32px rgba(14, 165, 233, 0.15),
        inset 0 2px 8px rgba(255, 255, 255, 0.1);
    position: absolute;
    bottom: 0;
    left: 0;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

/* Compass circle decorative rings */
.compass-circle::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 240px;
    height: 240px;
    border-radius: 50%;
    border: 1px dashed rgba(14, 165, 233, 0.2);
}

.compass-circle::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 180px;
    height: 180px;
    border-radius: 50%;
    border: 1px dashed rgba(14, 165, 233, 0.15);
}

/* Ka'bah Indicator */
.kaaba-indicator {
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 20;
    text-align: center;
}

.kaaba-icon {
    font-size: 2.5rem;
    filter: drop-shadow(0 4px 12px rgba(5, 150, 105, 0.4));
    animation: pulse-kaaba 2.5s ease-in-out infinite;
}

@keyframes pulse-kaaba {
    0%, 100% {
        transform: scale(1);
        filter: drop-shadow(0 4px 12px rgba(5, 150, 105, 0.4));
    }
    50% {
        transform: scale(1.15);
        filter: drop-shadow(0 6px 16px rgba(5, 150, 105, 0.6));
    }
}

.kaaba-label {
    font-size: 0.75rem;
    font-weight: 800;
    background: linear-gradient(135deg, #059669, #10b981);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 0.15em;
    margin-top: 0.35rem;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

/* Compass Center */
.compass-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    text-align: center;
}

.center-dot {
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, #0ea5e9, #14b8a6);
    border-radius: 50%;
    box-shadow:
        0 0 0 3px rgba(14, 165, 233, 0.2),
        0 4px 12px rgba(14, 165, 233, 0.4);
    margin: 0 auto;
    animation: pulse-center 2s ease-in-out infinite;
}

@keyframes pulse-center {
    0%, 100% {
        transform: scale(1);
        box-shadow:
            0 0 0 3px rgba(14, 165, 233, 0.2),
            0 4px 12px rgba(14, 165, 233, 0.4);
    }
    50% {
        transform: scale(1.1);
        box-shadow:
            0 0 0 5px rgba(14, 165, 233, 0.3),
            0 6px 16px rgba(14, 165, 233, 0.5);
    }
}

.you-label {
    font-size: 0.75rem;
    font-weight: 800;
    color: var(--text-accent);
    margin-top: 0.35rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

/* Cardinal Directions */
.compass-directions {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
}

.compass-direction {
    position: absolute;
    font-weight: 700;
    color: var(--text-secondary);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.15rem;
}

.direction-icon {
    font-size: 1.2rem;
}

.direction-label {
    font-size: 0.65rem;
    letter-spacing: 0.05em;
}

.compass-direction.north {
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    color: #dc2626;
}

.compass-direction.east {
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
}

.compass-direction.south {
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
}

.compass-direction.west {
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
}

/* Qibla Info */
.qibla-info {
    margin-top: 2rem;
    text-align: center;
}

.qibla-degree {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 0.75rem;
    font-family: 'Courier New', monospace;
    letter-spacing: 0.05em;
    padding: 0.5rem 1rem;
    background: rgba(14, 165, 233, 0.08);
    border-radius: 0.5rem;
    display: inline-block;
}

.qibla-status-text {
    color: var(--text-primary);
    font-size: 0.95rem;
    font-weight: 600;
    padding: 0.75rem 1.25rem;
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.1), rgba(5, 150, 105, 0.1));
    border-radius: 0.75rem;
    border: 1px solid rgba(14, 165, 233, 0.2);
    margin-top: 0.5rem;
}

.qibla-error {
    color: #dc2626;
    font-size: 0.9rem;
    margin-top: 1rem;
    padding: 1rem 1.25rem;
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.1), rgba(239, 68, 68, 0.08));
    border: 1px solid rgba(220, 38, 38, 0.3);
    border-radius: 0.75rem;
    font-weight: 500;
}

/* ========================================
   Countdown
   ======================================== */
.countdown {
    background: var(--countdown-bg);
    color: var(--countdown-text);
    border-radius: clamp(0.95rem, 2.6vw, 1.4rem);
    padding: clamp(1.1rem, 3.5vw, 1.6rem);
    text-align: center;
    box-shadow: 0 18px 40px rgba(14, 165, 233, 0.25);
    position: relative;
    overflow: hidden;
}

.countdown::before {
    content: '';
    position: absolute;
    inset: -35% 20% auto;
    height: 120%;
    background: rgba(255, 255, 255, 0.25);
    filter: blur(40px);
    opacity: 0.75;
}

.countdown-text {
    font-weight: 500;
    font-size: clamp(0.95rem, 2.8vw, 1.05rem);
    letter-spacing: 0.08em;
    position: relative;
}

/* ========================================
   Loading State
   ======================================== */
.loading {
    text-align: center;
    padding: 3.5rem 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    color: var(--text-primary);
}

.spinner {
    display: inline-block;
    width: 3rem;
    height: 3rem;
    border: 4px solid var(--spinner-bg);
    border-top-color: var(--spinner-border);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.loading-text {
    color: var(--text-secondary);
    font-weight: 500;
    font-size: clamp(1rem, 3vw, 1.1rem);
}

/* ========================================
   Error State
   ======================================== */
.error {
    background: #fef2f2;
    border: 1px solid #fecaca;
    border-radius: clamp(0.9rem, 2.5vw, 1.3rem);
    padding: clamp(1.25rem, 3.5vw, 1.75rem);
    text-align: center;
    box-shadow: 0 12px 20px rgba(248, 113, 113, 0.15);
}

[data-theme="dark"] .error {
    background: rgba(127, 29, 29, 0.3);
    border-color: rgba(248, 113, 113, 0.3);
}

.error-text {
    color: #b91c1c;
    margin-bottom: 1rem;
    font-weight: 500;
    font-size: clamp(1rem, 3vw, 1.1rem);
}

[data-theme="dark"] .error-text {
    color: #fca5a5;
}

.btn-retry {
    background: #dc2626;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 999px;
    border: none;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease;
    font-size: clamp(0.95rem, 2.8vw, 1.05rem);
}

.btn-retry:hover {
    background: #b91c1c;
    transform: translateY(-1px);
}

.btn-retry:active {
    transform: translateY(0);
}

/* ========================================
   Prayer Times List
   ======================================== */
.prayer-list {
    display: flex;
    flex-direction: column;
    gap: clamp(0.8rem, 2.5vw, 1.35rem);
}

.prayer-item {
    position: relative;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(236, 253, 245, 0.92));
    border: 1px solid var(--card-border);
    border-radius: clamp(0.95rem, 2.5vw, 1.3rem);
    padding: clamp(0.95rem, 3vw, 1.4rem);
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 14px 28px var(--card-shadow);
    gap: 0.75rem;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

[data-theme="dark"] .prayer-item {
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.95), rgba(15, 23, 42, 0.92));
}

.prayer-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 36px var(--card-shadow-hover);
    border-color: var(--text-accent);
}

.prayer-item.active {
    background: var(--prayer-active-bg);
    border-color: transparent;
    color: var(--prayer-active-text);
    box-shadow: 0 20px 44px rgba(14, 165, 233, 0.3);
}

.prayer-name-wrapper {
    display: flex;
    align-items: center;
    gap: clamp(0.5rem, 2vw, 0.85rem);
}

.prayer-icon {
    font-size: clamp(1.2rem, 4vw, 1.6rem);
    line-height: 1;
}

.prayer-label {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.prayer-name {
    font-weight: 700;
    font-size: clamp(1.05rem, 3.1vw, 1.2rem);
    color: var(--text-prayer-name);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.prayer-item.active .prayer-name {
    color: inherit;
}

.prayer-time {
    font-family: 'Courier New', monospace;
    font-size: clamp(1.1rem, 3.5vw, 1.4rem);
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: 0.06em;
}

.prayer-item.active .prayer-time {
    color: inherit;
}

@keyframes nextPulse {
    0%, 100% {
        opacity: 1;
        transform: translateY(0);
    }
    50% {
        opacity: 0.7;
        transform: translateY(-1px);
    }
}

.prayer-item.active .prayer-name,
.prayer-item.active .prayer-time {
    animation: nextPulse 1.4s ease-in-out infinite;
}

/* ========================================
   Share Modal
   ======================================== */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2000;
    padding: 1rem;
}

.modal-content {
    background: var(--card-bg);
    border-radius: 1.25rem;
    padding: 1.75rem;
    max-width: 400px;
    width: 100%;
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.3);
    border: 1px solid var(--card-border);
    animation: modalFadeIn 0.3s ease;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.share-options {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.share-option-wrapper {
    display: flex;
    gap: 0.5rem;
    align-items: stretch;
}

.btn-share-option {
    background: var(--card-bg);
    border: 2px solid var(--card-border);
    border-radius: 1rem;
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: left;
    flex: 1;
}

.btn-share-option:hover {
    border-color: var(--text-accent);
    background: linear-gradient(135deg, var(--card-bg), rgba(14, 165, 233, 0.05));
    transform: translateY(-2px);
    box-shadow: 0 8px 16px var(--card-shadow);
}

.btn-share-option:active {
    transform: translateY(0);
}

.btn-copy-small {
    background: var(--card-bg);
    border: 2px solid var(--card-border);
    border-radius: 0.75rem;
    padding: 0.65rem 0.85rem;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.15rem;
    min-width: 4rem;
}

.btn-copy-small:hover {
    border-color: var(--text-accent);
    background: var(--text-accent);
    transform: scale(1.05);
}

.btn-copy-small:active {
    transform: scale(0.95);
}

.copy-icon {
    font-size: 1.25rem;
    line-height: 1;
}

.copy-label {
    font-size: 0.65rem;
    font-weight: 600;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.btn-copy-small:hover .copy-label {
    color: white;
}

.share-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.share-title {
    font-weight: 700;
    font-size: 1rem;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.share-desc {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

/* ========================================
   Footer Credits & Disclaimer
   ======================================== */
.footer-credits {
    margin-top: 2rem;
    padding: 1.5rem;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 1rem;
    backdrop-filter: blur(12px);
    text-align: center;
}

.credits-text {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin: 0 0 0.75rem 0;
    line-height: 1.6;
}

.credits-text strong {
    color: var(--text-primary);
    font-weight: 600;
}

.credits-text a {
    color: var(--text-accent);
    text-decoration: none;
    font-weight: 500;
    transition: opacity 0.2s ease;
}

.credits-text a:hover {
    opacity: 0.7;
    text-decoration: underline;
}

.disclaimer-text {
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin: 0;
    padding-top: 0.75rem;
    border-top: 1px solid var(--card-border);
    line-height: 1.5;
    opacity: 0.85;
}

/* ========================================
   Utility Classes
   ======================================== */
.hidden {
    display: none !important;
}

/* ========================================
   Responsive Breakpoints
   ======================================== */
@media (min-width: 640px) {
    body {
        padding: clamp(1.75rem, 5vw, 2.5rem) clamp(1.5rem, 5vw, 2.75rem);
    }

    .container {
        width: min(100%, 34rem);
        gap: 1.35rem;
    }

    .card,
    .countdown {
        border-radius: 1.35rem;
    }

    .countdown {
        padding: 1.45rem;
    }

    .prayer-item {
        border-radius: 1.35rem;
        padding: 1.25rem 1.5rem;
    }

    .prayer-list {
        gap: 1.25rem;
    }
}

@media (min-width: 1024px) {
    body {
        padding: 2rem 0 2.5rem;
    }

    .container {
        width: min(100%, 28rem);
        gap: 1rem;
    }

    .card,
    .countdown {
        border-radius: 1.1rem;
        padding: 1.1rem 1.5rem;
        box-shadow: 0 12px 24px var(--card-shadow);
    }

    #date {
        font-size: 0.95rem;
    }

    #clock {
        font-size: 2.8rem;
    }

    #location {
        font-size: 0.95rem;
    }

    .countdown {
        padding: 1.1rem 1.5rem;
    }

    .countdown-text {
        font-size: 0.95rem;
    }

    .prayer-list {
        gap: 1rem;
    }

    .prayer-item {
        border-radius: 1.1rem;
        padding: 0.9rem 1.35rem;
        box-shadow: 0 10px 18px var(--card-shadow);
    }

    .prayer-name {
        font-size: 1rem;
    }

    .prayer-time {
        font-size: 1.1rem;
    }
}
