/* Chronicle Component Style */
.chronicle-box {
    position: relative;
        z-index: 110;
        width: 220px;
    background: rgba(255, 255, 255, 0.6);
    /* border: 3px double rgb(20, 0, 69, 0.6); */
    font-family: 'Arbutus Slab', serif;
    /* color: rgb(20, 0, 69, 0.6); */
    padding: 12px;
    box-sizing: border-box;
    /* box-shadow: 1px 0px 1px rgb(4, 49, 94); */
}

/* --- */

.chronicle-header {
    position: absolute;
        left: 100%;
    color: rgba(116, 69, 3, 0.6);
    font-size: 12px;
    letter-spacing: 2px;
    text-align: left;
    margin-bottom: 10px;
    border-bottom: 1px solid rgba(116, 69, 3, 0.6);
    /* border-bottom: 1px solid rgb(20, 0, 69, 0.6); */
    padding-bottom: 4px;
    display: flex;
    justify-content: space-between;
}

.chronicle-grid {
    /* color: rgb(20, 0, 69, 0.6); */
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 2px;
}

.ch-weekday {
    /* transform: rotate(5deg); */
    color: white;
    background-image: linear-gradient(to bottom, rgba(116, 69, 3, 0.6) , rgba(95, 91, 143, 0.6), #ffffff53);
    /* background-color: 777799; */
    /* background-color: #68688e6e; */
    /* background-color: rgba(191, 191, 191, 0.6); */
    /* background-color: rgba(116, 69, 3, 0.6); */
    /* background-color: rgb(20, 0, 69, 0.2); */
    font-size: 10px;
    /* font-size: 14px; */
    text-align: center;
    /* font-family: 'Courier New', Courier, monospace; */
    /* font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif; */
    /* font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif; */
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    padding-bottom: 6px;
    padding-top: 6px;
    text-shadow: 1px 0px 1px rgba(116, 69, 3, 0.6);
}

.ch-day {
    color: rgba(116, 69, 3, 0.6);
    /* color: rgb(20, 0, 69, 0.6); */
    aspect-ratio: 1/1;
    /* background: rgba(255, 255, 255, 0.03); */
    display: flex;
    flex-direction: column;
    align-items: center;
        margin: 0px;
        border: 0px;
    justify-content: center;
    position: relative;
    cursor: crosshair;
    transition: all 0.3s ease;
}

/* .ch-day:hover{
    background: rgb(20, 0, 69, 0.3);
    transform: rotate(45deg);
    background: rgba(0, 47, 167, 0.3);
} */
/* .ch-day:hover .ch-num{
    color: rgb(20, 0, 69, 0.9);
} */

.ch-num {
    font-size: 12px;
    color: rgba(116, 69, 3, 0.6);
    font-family: 'Courier New', Courier, monospace;
    /* color: rgba(116, 69, 3, 0.6); */
}

.ch-num.active {
    /* color: rgba(116, 69, 3, 0.7); */
    /* font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif; */
    /* font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif; */
    /* font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif; */
    /* font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; */
    /* font-family: 'Times New Roman', Times, serif; */
    /* font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif; */
    border-left: 1px solid ;
    font-family: Georgia, 'Times New Roman', Times, serif;
    padding-bottom: 2px;
}

.ch-label {
    font-size: 6px;
    color: rgb(20, 0, 69, 0.6);
    position: absolute;
        bottom: 1px;
        transform: scale(0.8);
    white-space: nowrap;
}

.ch-tooltip {
    border-left: 2px solid ;
    position: absolute;
        bottom: -40%;
        right: 100%;
        /* transform: translateX(-50%); */
        width: 180px;
        z-index: 160;
    background: rgba(255, 255, 255, 0.8);
    /* border: 1px solid rgba(116, 69, 3, 0.6); */
    padding: 10px;
    color: rgb(20, 0, 69, 0.6);
    font-size: 10px;
    line-height: 1.4;
    display: none;
    pointer-events: none;
    box-shadow: 0 0 15px rgba(255, 213, 154, 0.6);
}

.ch-day:hover .ch-tooltip {
    display: block;
}
.ch-tooltip:hover{
    display: block;
}
