        html, body {
         background: linear-gradient(135deg, #1e0533 0%, #3b1b5e 40%, #6b3fa0 100%);
		}
		.journal-container {
            max-width: 600px;
            margin: 0 auto 40px auto;
            padding: 24px;
            border-radius: 16px;
            backdrop-filter: blur(4px);
			background:linear-gradient(90deg, rgba(124,58, 237, 0.15), rgba(6, 182, 212, 0.25));
        }
        .journal-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 20px;
        }
        .journal-header h1 {
            font-weight: 800;
            font-size: 24px;
            margin: 0;
            text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
        }
        .journal-header h1 i {
            color: #ffffff;
            margin-right: 8px;
        }
		
        .nav-buttons {
            display: flex;
            gap: 10px;
            justify-content: center;
            margin: 0 auto 40px auto;
			padding:20px 10px;
			background: linear-gradient(180deg, rgba(124,58, 237, 0.15), rgba(6, 182, 212, 0.25));
			border-radius:12px;
			max-width:600px;
			box-shadow:0 6px 20px rgba(0,0,0,0.45);
        }
		
        .nav-btn {
            background: var(--glass);
            color: #fff;
            padding: 10px 16px;
            border-radius: 10px;
            border: 1px solid rgba(255,255,255,0.3);
            font-size: 10px;
            font-weight: 600;
            cursor: pointer;
            transition: transform 0.2s, background 0.2s;
			backdrop-filter: blur(6px);
        }
        .nav-btn.active {
            background: rgba(255,255,255,0.3);
            transform: scale(1.05);
        }
        .nav-btn:hover {
            background: rgba(255,255,255,0.2);
            transform: scale(1.05);
        }
        .btn:hover {
            border-color: #7c3aed;
        }
        .btn:hover {
            transform: scale(1.05);
        }
        .btn {
            background: var(--glass);
            color: #fff;
            padding: 8px 12px;
            border-radius: 1em;
            border: 1px solid rgba(255,255,255,0.3);
            font-size: 0.6em;
            font-weight: 600;
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 6px;
            transition: transform 0.2s;
            backdrop-filter: blur(6px);
        }
        .btn i {
            color: #ffffff;
        }
        .verse-card {
            background: rgba(255,255,255,0.15);
            border-radius: 12px;
            padding: 20px;
            margin-bottom: 20px;
            text-align: center;
            animation: fadeIn 0.5s ease-in;
			box-shadow: 0 4px 20px rgba(0,0,0,0.2);
        }
        .verse-text {
            font-size: 28px;
            margin-bottom: 3px;
            line-height: 1.4;
            color: white;
        }
        .verse-citation {
            font-size: 12px;
            font-weight: 400;
            color: #0007;
        }
        .verse-prayer i {
            color: #ffffff;
        }
        .journal-prompt {
            font-size: 17px;
            font-weight: 600;
            margin: 35px auto 10px auto;
            text-align: center;
            color: #ffdb4d;
            text-shadow: 1px 1px 3px rgba(0,0,0,0.2);
        }
        .journal-textarea {
            width: 100%;
            min-height: 100px;
            background: rgba(255,255,255,0.2);
            border: 1px solid rgba(255,255,255,0.15);
            border-radius: 10px;
            padding: 14px;
            color: #fff;
            font-size: 14px;
            resize: vertical;
            transition: border-color 0.3s;
        }
        .journal-textarea:focus {
            border-color: #7c3aed;
            outline: none;
        }
        .btn-group {
            display: flex;
            gap: 12px;
            justify-content: center;
            
        }
        .journal-history {
            margin-top: 24px;
        }
        .journal-history h2 {
            font-weight: 400;
            font-size: 14px;
            margin-bottom: 12px;
            color: #ffdb4d;
        }
        .journal-history h2 i {
            color: #ffffff;
        }
        .journal-entry {
            background: rgba(255,255,255,0.1);
            border-radius: 10px;
            padding: 16px;
            margin-bottom: 12px;
            font-size: 14px;
            line-height: 1.5;
            animation: slideIn 0.3s ease-in;
			box-shadow: 0 4px 20px rgba(0,0,0,0.2);
        }
        .journal-entry-meta {
            font-size: 12px;
            color: #ddd;
            margin-bottom: 8px;
        }
        .no-entries {
            text-align: center;
            color: #fff;
            font-style: italic;
            margin-top: 20px;
        }
        .branding {
            text-align: center;
            margin-top: 24px;
            font-size: 14px;
        }
        .branding a {
            color: #ffdb4d;
            text-decoration: none;
        }
        .branding a:hover {
            text-decoration: underline;
        }
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(10px); }
            to { opacity: 1; transform: translateY(0); }
        }
        @keyframes slideIn {
            from { opacity: 0; transform: translateX(-10px); }
            to { opacity: 1; transform: translateX(0); }
        }
        @media (max-width: 480px) {
            .journal-container { padding: 16px; }
            .journal-header h1 { font-size: 20px; }
            .verse-text { font-size: 18px; }
            .journal-prompt { font-size: 16px; }
            .btn { font-size: 12px; padding: 8px 12px; }
        }
        .journal-day {
            font-size: 1rem;
            color: #ff6b6b;
            margin-bottom: 10px;
            font-weight: bold;
        }
        .left-mini {
            position: fixed;
            left: 18px;
            bottom: 90px;
            display: flex;
            flex-direction: column;
            gap: 10px;
            z-index: 55;
        }
        .mini {
            width: 52px;
            height: 52px;
            border-radius: 12px;
            background: var(--glass);
            display: flex;
            align-items: center;
            justify-content: center;
            backdrop-filter: blur(6px);
            cursor: pointer;
            box-shadow: 0 6px 18px rgba(2,6,23,0.45);
            position: relative;
        }
        .fav-count {
            position: absolute;
            top: -6px;
            right: -6px;
            background: var(--danger);
            color: white;
            font-size: 12px;
            width: 20px;
            height: 20px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .sheet {
            position: fixed;
            left: 0;
            right: 0;
            bottom: 0;
            height: 0;
            background: linear-gradient(90deg, var(--accent), #06b6d4);
            color: #dbeafe;
            border-top-left-radius: 18px;
            border-top-right-radius: 18px;
            overflow: hidden;
            z-index: 70;
            transition: height .32s cubic-bezier(.2,.9,.25,1);
            box-shadow: 0 -20px 60px rgba(2,6,23,0.6);
        }
        .icon {
            width: 20px;
            height: 20px;
            display: inline-block;
            opacity: .95;
            stroke: #ffffff;
        }
      
        body.dark {
            background: var(--dark-bg);
        }
        body.dark .journal-container {
            background: var(--dark-container) !important;
        }
        body.dark .bottom-nav {
            background: var(--dark-bg);
        }
        body.dark .verse-card {
            background: rgba(255,255,255,0.1);
        }
	.entry-count, .fav-count {
    position: absolute;
    top: -6px;
    right: -6px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    color: white;
    font-weight: 600;
}
.entry-count {
    background: #06b6d4; /* Blue for reflections */
}
.fav-count {
    background: #ff6b6b; /* Red for favorites */
}
  .ref-div {
    border-top: 1px solid white;
    border-bottom: 1px solid white;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    padding: 24px;
    border-radius: 8px;
    background: linear-gradient(135deg, #A1C4FD 0%, #C2E9FB 100%);
    color: white;
    text-align: center;
    font-weight: 500;
  }