
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            max-width: 1100px;
            margin: 0 auto;
            padding: 20px;
            background-color: #F5f5f5;
            color: #333;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            padding-bottom: 70px; /* Space for fixed footer */
        }
        
        h1, h2 {
            color: #1d3557;
            font-family: 'Georgia', serif;
        }
        
        /* Quick Reference Box */
        .quick-reference {
            display: none; /* Hidden by default until location is set */
            background-color: white;
            border-radius: 8px;
            box-shadow: 0 2px 4px rgba(0,0,0,0.1);
            padding: 25px;
            margin: 20px 0 30px 0;
        }

        .quick-info {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            margin-bottom: 20px;
        }

        .quick-info-item {
            font-family: 'Segoe UI', sans-serif;
        }

        .quick-info-label {
            font-weight: 300;
            color: #666;
            margin-bottom: 5px;
            font-size: 0.9em;
        }

        .quick-info-value {
            font-size: 1.2em;
            font-weight: 500;
            color: #1d3557;
        }

        /* Calendar Styles */
        table {
            width: 100%;
            border-collapse: collapse;
            margin: 20px 0;
            background: white;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 2px 4px rgba(0,0,0,0.1);
        }
        
        th, td {
            padding: 12px;
            text-align: center;
            border: 1px solid #ddd;
        }
        
        th {
            background-color: #457b9d;
            color: white;
            font-weight: 600;
        }
        
        tr:nth-child(even) {
            background-color: #f8f9fa;
        }
        
        .location-form {
            background-color: white;
            padding: 20px;
            border-radius: 8px;
            margin-bottom: 20px;
            box-shadow: 0 2px 4px rgba(0,0,0,0.1);
        }
        
        .button-group {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            width: 100%;
        }
        
        .input-group {
            display: flex;
            gap: 5px;
            flex: 1;
            min-width: 300px;
        }
        
        .input-group input {
            flex: 1;
            min-width: 0;
            padding: 10px;
            border: 1px solid #ddd;
            border-radius: 4px;
        }

        button {
            padding: 10px 20px;
            background-color: #1d3557;
            color: white;
            border: none;
            border-radius: 4px;
            cursor: pointer;
            transition: background-color 0.3s;
        }
        
        button:hover {
            background-color: #457b9d;
        }
        
        .location-btn {
            display: flex;
            align-items: center;
            gap: 5px;
            background-color: #4CAF50;
            white-space: nowrap;
        }
        
        .location-btn:hover {
            background-color: #45a049;
        }

        /* Prayers Button */
        .prayers-button {
            display: inline-block;
            background-color: #1d3557;
            color: white;
            padding: 12px 24px;
            border-radius: 6px;
            text-decoration: none;
            font-weight: 500;
            transition: background-color 0.3s;
        }

        .prayers-button:hover {
            background-color: #47a9ff;
        }

        /* Prayers Section */
        .prayers-section {
            margin-top: 40px;
            padding: 30px;
            background-color: white;
            border-radius: 8px;
            box-shadow: 0 2px 4px rgba(0,0,0,0.1);
        }

        .prayers-section h2 {
            font-family: 'Georgia', serif;
            color: #1d3557;
            font-size: 2em;
            margin-bottom: 25px;
            text-align: center;
        }

        .prayer {
            margin-bottom: 30px;
            padding: 20px;
            border-left: 3px solid #457b9d;
            background-color: #f8f9fa;
        }

        .prayer p {
            font-family: 'Georgia', serif;
            line-height: 1.8;
            margin-bottom: 15px;
            color: #2c3e50;
        }

        .prayer-source {
            font-family: 'Georgia', serif;
            font-style: italic;
            color: #666;
            font-size: 1em;
            text-align: right;
        }
        
        /* Footer */
        footer {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            text-align: center;
            padding: 15px;
            background-color: white;
            border-top: 1px solid #eaeaea;
            z-index: 100;
        }

        footer a {
            color: #1d3557;
            text-decoration: none;
            font-family: 'Segoe UI', sans-serif;
        }

        footer a:hover {
            text-decoration: underline;
        }

        .error {
            color: #d8000c;
            background-color: #ffbaba;
            padding: 10px;
            border-radius: 5px;
            margin: 10px 0;
        }
        
        .celebration {
            background-color: #ffe4b5;
            color: #8b4513;
            font-weight: bold;
        }
        
        .celebration td {
            background-color: #ffe4b5;
        }
        
        .current-day td {
            position: relative;
            background: linear-gradient(to right, #f0f9ff 0%, #ffffff 50%, #f0f9ff 100%);
            background-size: 200% 100%;
            animation: gradient-shift 8s ease infinite;
        }
        
        .current-day td::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            border: 3px solid #1d3557;
            border-radius: 4px;
        }

        @keyframes gradient-shift {
            0% { background-position: 100% 50%; }
            50% { background-position: 0% 50%; }
            100% { background-position: 100% 50%; }
        }

        .drop-cap {
            float: left;
            font-size: 4.5em;
            line-height: 0.8;
            margin-right: 0.1em;
            margin-top: 0.1em;
            padding: 0.1em 0.1em 0 0;
            color: #1d3557;
            font-family: "Times New Roman", serif;
            font-weight: bold;
        }