/* ==========================================================================
   Bible Reading Plan - Main Styles
   ========================================================================== */

/* Main Containers */
#brp-container {
    /*font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;*/
}
.brp-controls {
    margin-bottom: 2.5em;
	display: flex;
	flex-wrap: wrap; /* Allows fields to wrap on smaller screens */
	gap: 16px;
}
.brp-input-group {
	display: flex;
	flex-direction: column;
	gap: 6px; /* Space between label and field */
	flex: 1 1 150px; /* Grow, shrink, and base width of 200px before wrapping */
	min-width: 180px;
}
.brp-input-group.wide {
    flex: 2 1 300px;
}
.brp-input-group label {
    margin-left: 1em;
    margin-right: 1em;
	font-size: .9rem;
	font-weight: 600;
	color: #4a5568;
	text-transform: uppercase;
	letter-spacing: 0.05em;
}
/* Consistent styling across input types */
.brp-input-group input,
.brp-input-group select {
	width: 100%;
	padding: 10px 12px;
	font-size: 0.95rem;
	color: #2d3748;
	background-color: #ffffff;
	border: 1px solid #cbd5e0;
	border-radius: 6px;
	outline: none;
	transition: border-color 0.2s, box-shadow 0.2s;
}

.brp-input-group input:focus,
.brp-input-group select:focus {
	border-color: #3182ce;
	box-shadow: 0 0 0 3px rgba(49, 130, 206, 0.15);
}

#brp-content {
    margin-top: 20px;
}

/* --------------------------------------------------------------------------
   Header Card (Loaded via JS)
   -------------------------------------------------------------------------- */
.brp-header-card {
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    border-left: 5px solid #0073aa;
    padding: 24px;
    margin-bottom: 25px;
}
.brp-header-title-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
    border-bottom: 1px solid #eee;
    padding-bottom: 12px;
}
.brp-header-title-row h2 {
    margin: 0;
    font-size: 1.5rem;
    color: #1d2327;
    font-weight: 700;
    letter-spacing: -0.5px;
}
.brp-badge-active {
    background: #e1f0fe;
    color: #1155cc;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}
.brp-header-desc {
    margin: 0 0 16px 0;
    color: #50575e;
    font-size: 0.95rem;
    line-height: 1.6;
}
.brp-header-resources {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #646970;
    font-size: 0.85rem;
    border-top: 1px dashed #e5e5e5;
    padding-top: 12px;
}

/* --------------------------------------------------------------------------
   Today's Reading Block (Generated via PHP)
   -------------------------------------------------------------------------- */
.brp-reading-block {
    /* Main wrapper for verses */
}
.brp-today-container {
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    padding: 16px 20px;
    margin-bottom: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.brp-today-header {
    font-size: 0.85rem;
    font-weight: 700;
    color: #646970;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.brp-pills-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.brp-reading-pill {
    background: #ffffff;
    border: 1px solid #dcdcde;
    color: #1d2327;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.95rem;
    font-weight: 600;
    box-shadow: 0 1px 2px rgba(0,0,0,0.03);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

/* --------------------------------------------------------------------------
   Bible Text & Verses
   -------------------------------------------------------------------------- */
.brp-chapter-heading {
    margin-top: 48px;
    margin-bottom: 16px;
    border-bottom: 2px solid #e2e4e7;
    padding-bottom: 10px;
    color: #1d2327;
    font-size: 1.6rem;
    font-weight: 700;
    letter-spacing: -0.5px;
}
.brp-verse-text {
    line-height: 1.45;
    margin-top: 0;
    margin-bottom: 8px;
    color: #3c434a;
    font-size: 1.05rem;
}
.brp-verse-num {
    color: #0073aa;
    font-weight: 700;
    margin-right: 6px;
    font-size: 0.75em;
    top: -0.4em;
    position: relative;
}
