/* _content/AINovelWriter.Web/Components/BookWriterComponents/BookReader.razor.rz.scp.css */

.book[b-zq25li5npr] {
	display: grid;
	font-size:105%;
	font-family: "Judson", serif;
	--brown: rgb(90, 55, 8);
	--bkg: rgb(255, 255, 232);
	background-color: var(--bkg);
	background-image: url("https://www.transparenttextures.com/patterns/cream-paper.png");
}

p[b-zq25li5npr] {
	line-height: 30px;
	text-align: justify;
}

	p > span[b-zq25li5npr] {
		font-weight: 400;
		font-style: italic;
		display: block;
		padding: 1em 3em;
		font-size: 1.2rem;
	}

	p > strong[b-zq25li5npr] {
		display: block;
		margin-bottom: 5px;
	}

h1[b-zq25li5npr],
h2[b-zq25li5npr],
h3[b-zq25li5npr] {
	font-family: "Quando", serif;
	line-height: 1rem;
	color: var(--brown);
}

.bkg[b-zq25li5npr] {
	position: fixed;
	top: 0;
	right: 0;
	width: 900px;
	height: 100%;
	object-fit: cover;
	z-index: -1;
	opacity: 0.9;
	mix-blend-mode: exclusion;
}

	.bkg img[b-zq25li5npr] {
		width: 100%;
		height: auto;
	}

.page[b-zq25li5npr] {
	width: 100%;
	max-width: 800px;
	padding: 1em;
	font-size: 18px;
	display: grid;
	grid-template-columns: 30% 1fr 30%;
	grid-auto-rows: min-content;
	gap: 1.5em;
	position: relative;
	z-index: 1;
}

	.page h1[b-zq25li5npr] {
		font-size: 3rem;
		margin: 1em 0 0.1em;
		grid-column: 2/4;
		justify-self: end;
	}

	.page h2[b-zq25li5npr] {
		font-size: 1.4rem;
		grid-column: 2/4;
		justify-self: end;
	}

	.page h3[b-zq25li5npr] {
		font-weight: normal;
		margin: 2em 0 3em;
		font-size: 1rem;
		grid-column: 2/4;
		justify-self: end;
	}

	.page p:nth-of-type(1)[b-zq25li5npr] {
		grid-column: 1/3;
	}

	.page p:nth-of-type(2)[b-zq25li5npr] {
		grid-column: 1/3;
	}

		.page p:nth-of-type(2)[b-zq25li5npr]::first-letter {
			font-size: 5rem;
			float: left;
		}

	.page p:nth-of-type(3)[b-zq25li5npr] {
		grid-column: 1/3;
	}

	.page p:nth-of-type(4)[b-zq25li5npr] {
		grid-column: 1/3;
	}

	.page p:nth-of-type(5)[b-zq25li5npr],
	.page p:nth-of-type(6)[b-zq25li5npr] {
		grid-column: 1/4;
		column-count: 2;
		column-gap: 1.5em;
		padding: 20px 10px;
		border-top: 1px dotted var(--brown);
	}

	.page p:nth-of-type(7)[b-zq25li5npr],
	.page p:nth-of-type(8)[b-zq25li5npr] {
		grid-column: 1/4;
	}

@media screen and (max-width: 640px) {
	.page[b-zq25li5npr] {
		grid-template-columns: 1fr;
	}

		.page h1[b-zq25li5npr] {
			font-size: 2rem;
		}

		.page h2[b-zq25li5npr] {
			font-size: 1.2rem;
		}

		.page p[b-zq25li5npr] {
			grid-column: 1/4 !important;
		}

			.page p:nth-of-type(5)[b-zq25li5npr],
			.page p:nth-of-type(6)[b-zq25li5npr] {
				column-count: unset;
			}
}
/* _content/AINovelWriter.Web/Components/BusyOverlay.razor.rz.scp.css */
/* BusyOverlay.razor.css */
.busy-overlay[b-1t1zjoojyl] {
    position: fixed;
    top: 1vh;
    left: 1vw;
    width: 95vw;
    height: 94vh;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.busy-overlay-content[b-1t1zjoojyl] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.9);
    padding: 2rem 3rem;
    border-radius: 16px;
    box-shadow: 0 2px 16px rgba(0,0,0,0.2);
}

.busy-overlay-message[b-1t1zjoojyl] {
    font-size: 1.25rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    color: #222;
    text-align: center;
}

.busy-overlay-spinner[b-1t1zjoojyl] {
    width: 48px;
    height: 48px;
    border: 6px solid #ccc;
    border-top: 6px solid #0078d4;
    border-radius: 50%;
    animation: busy-overlay-spin-b-1t1zjoojyl 1s linear infinite;
}

@keyframes busy-overlay-spin-b-1t1zjoojyl {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
/* _content/AINovelWriter.Web/Pages/Home.razor.rz.scp.css */
/* Basic Reset */
*[b-6ys8ekbboh] {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Background Styling */
.background[b-6ys8ekbboh] {
    height: 100vh;
    background: linear-gradient(135deg, #ece9e6, #ffffff);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

/* Card Styling */
.card[b-6ys8ekbboh] {
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    max-width: 700px;
    width: 100%;
    text-align: center;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

    /* Headings */
    .card h1[b-6ys8ekbboh] {
        font-size: 2.5rem;
        color: #222;
        margin-bottom: 10px;
    }

    .card h2[b-6ys8ekbboh] {
        font-size: 1.25rem;
        color: #666;
        margin-bottom: 30px;
    }

    /* Paragraphs */
    .card p[b-6ys8ekbboh] {
        font-size: 1.1rem;
        color: #444;
        line-height: 1.6;
        margin-bottom: 20px;
    }

/* Button Container */
.button-container[b-6ys8ekbboh] {
    margin-top: 30px;
}

/* Button Styling */
.start-button[b-6ys8ekbboh] {
    display: inline-block;
    background-color: #4F46E5;
    color: #fff;
    padding: 14px 28px;
    font-size: 1.2rem;
    border-radius: 8px;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

    .start-button:hover[b-6ys8ekbboh] {
        background-color: #4338CA;
        transform: translateY(-2px);
    }
/* _content/AINovelWriter.Web/Pages/Index.razor.rz.scp.css */
/* Basic Reset */
*[b-kumqx0glru] {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Background Styling */
.background[b-kumqx0glru] {
    height: 100vh;
    background: linear-gradient(135deg, #ece9e6, #ffffff);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

/* Card Styling */
.card[b-kumqx0glru] {
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    max-width: 700px;
    width: 100%;
    text-align: center;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

    /* Headings */
    .card h1[b-kumqx0glru] {
        font-size: 2.5rem;
        color: #222;
        margin-bottom: 10px;
    }

    .card h2[b-kumqx0glru] {
        font-size: 1.25rem;
        color: #666;
        margin-bottom: 30px;
    }

    /* Paragraphs */
    .card p[b-kumqx0glru] {
        font-size: 1.1rem;
        color: #444;
        line-height: 1.6;
        margin-bottom: 20px;
    }

/* Button Container */
.button-container[b-kumqx0glru] {
    margin-top: 30px;
}

/* Button Styling */
.start-button[b-kumqx0glru] {
    display: inline-block;
    background-color: #4F46E5;
    color: #fff;
    padding: 14px 28px;
    font-size: 1.2rem;
    border-radius: 8px;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

    .start-button:hover[b-kumqx0glru] {
        background-color: #4338CA;
        transform: translateY(-2px);
    }
/* _content/AINovelWriter.Web/Shared/MainLayout.razor.rz.scp.css */
.page[b-8g9804nz7o] {
    position: relative;
    display: flex;
    flex-direction: column;
}

main[b-8g9804nz7o] {
    flex: 1;
}

.sidebar[b-8g9804nz7o] {
    background-image: linear-gradient(180deg, rgb(5, 39, 103) 0%, #3a0647 70%);
}

.top-row[b-8g9804nz7o] {
    background-color: #f7f7f7;
    border-bottom: 1px solid #d6d5d5;
    justify-content: flex-end;
    height: 3.5rem;
    display: flex;
    align-items: center;
}

    .top-row[b-8g9804nz7o]  a, .top-row .btn-link[b-8g9804nz7o] {
        white-space: nowrap;
        margin-left: 1.5rem;
    }

    .top-row a:first-child[b-8g9804nz7o] {
        overflow: hidden;
        text-overflow: ellipsis;
    }

@media (max-width: 640.98px) {
    .top-row:not(.auth)[b-8g9804nz7o] {
        display: none;
    }

    .top-row.auth[b-8g9804nz7o] {
        justify-content: space-between;
    }

    .top-row a[b-8g9804nz7o], .top-row .btn-link[b-8g9804nz7o] {
        margin-left: 0;
    }
}

@media (min-width: 641px) {
    .page[b-8g9804nz7o] {
        flex-direction: row;
    }

    .sidebar[b-8g9804nz7o] {
        width: 250px;
        height: 100vh;
        position: sticky;
        top: 0;
    }

    .top-row[b-8g9804nz7o] {
        position: sticky;
        top: 0;
        z-index: 1;
    }

    .top-row[b-8g9804nz7o], article[b-8g9804nz7o] {
        padding-left: 2rem !important;
        padding-right: 1.5rem !important;
    }
}
