:root {
    --main_bg: #404040;
    --main_text: #FFC000;
    --other_bg: #303030;
    --hover_bg: #202020;
    --other_text: #FFFFCC;
    --check_bg: #F4F4D7;
    --check_text: #FFC000;
}

.light_theme {
    --main_bg: #F4F4D7;
    --main_text: #101010;
    --other_bg: #ECEC93;
    --hover_bg: #C3C36B;
    --other_text: #202020;
    --check_bg: #404040;
    --check_text: #000000;
}

body {
    background-color: var(--main_bg);
    font-family: roboto;
    font-size: 24px;
    margin: 0;
    text-align: center;
}

.header {
    background-color: #000000;
    color: #FFC000;
    overflow: hidden;
    position: fixed;
    padding: 0;
    width: 100%;
    z-index: 999;
}

.header h2 {
    display: inline-block;
    font-size: 36px;
//    margin: 10px 0;
    margin-top: 5px;
    margin-bottom: -5px;
    text-transform: capitalize;
    width: calc(100% - 65px);
}

.top_lbl {
    font-size: 12px;
    display: flex;
    position: absolute;
    top: 25px;
    align-items: center;
    justify-content: center;
}

.top_check {
    appearance: none;
    -webkit-appearance: none;
    width: 16px;
    height: 16px;
    border: 2px solid black;
    border-radius: 4px;
    cursor: pointer;
    background-color: #F4F4D7;
    transition: background-color 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.top_check::after {
    content: "✔";
    font-size: 12px;
    color: black;
    opacity: 0; /* hidden by default */
    transform: scale(0); /* optional: smooth pop-in */
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.top_check:checked {
    background-color: #FFC000;
}

.top_check:checked::after {
    opacity: 1;
    transform: scale(1);
}

.settings {
    background-color: var(--main_bg);
    font-size: 14px;
    padding-top: 85px;
    position: fixed;
    width: 100%;
    z-index: 998;
}

.font_but_div {
    display: none;
    width: calc((100% - 285px) / 2);
}

.font_but_div button {
    background-color: var(--other_bg);
    color: var(--main_text);
    border-radius: 15px;
    width: 30px;
    height: 30px;
    font-size: 15px;
    font-weight: bold;
}

.date_div {
    display: inline-block;
    width: 275px;
}

.lbl_dt {
    display: inline-block;
    color: var(--main_text);
    width: 125px;
    font-weight: bold;
    text-align: center;
}

.date_div input {
    display: inline-block;
    background-color: var(--other_bg);
    color: var(--other_text);
    width: 125px;
    text-align: center;
}

.lbl_ver {
    display: inline-block;
    color: var(--main_text);
    width: 65px;
    font-weight: bold;
    text-align: end;
}

.sel_ver {
    display: inline-block;
    background-color: var(--other_bg);
    color: var(--other_text);
    width: 62px;
}

.check {
    appearance: none;
    -webkit-appearance: none;
    width: 16px;
    height: 16px;
    border: 2px solid black;
    border-radius: 4px;
    cursor: pointer;
    background-color: var(--check_bg);
    transition: background-color 0.2s ease;
    display: inline-flex;
    position: relative;
    right: 20px;
    align-items: center;
    justify-content: center;
}

.check::after {
    content: "✔";
    font-size: 12px;
    color: var(--check_text);
    opacity: 0; /* hidden by default */
    transform: scale(0); /* optional: smooth pop-in */
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.check:checked {
    background-color: var(--other_bg);
}

.check:checked::after {
    opacity: 1;
    transform: scale(1);
}

.content {
    display: block;
    padding: 0;
    padding-top: 160px;
    width: 100%;
    height: calc(100vh - 165px);
}

.link {
    background-color: inherit;
    color: var(--check_bg);
    border: none;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
    margin: 0 auto;
    outline: none;
    text-transform: capitalize;
    width: calc(100% - 25px);
}

.read_text {
    background-color: var(--other_bg);
    color: var(--other_text);
    font-size: 14px;
    overflow: hidden auto;
}

.verse_line {
    display: flex;
    width: 100%;
    padding: 10px 0;
    align-items: center;
    background-color: var(--other_bg);
    transition: background-color 0.2s ease;
}

.verse_line:hover {
    background-color: var(--hover_bg);
}

.verse_num {
    display: inline-block;
    width: 30px;
    text-align: end;
    margin: 0 5px;
}

.verse_text {
    display: inline-block;
    width: calc(100% - 30px);
    padding-right: 10px;
    text-align: start;
}

.verse_text_2 {
    display: inline-block;
    width: calc(50% - 30px);
    padding-right: 10px;
    text-align: start;
}
