@import url('https://fonts.googleapis.com/css?family=Cherry Bomb One|Itim|Coral Pixels|Special Elite|Silkscreen');
@import url('https://use.fontawesome.com/releases/v5.8.1/css/all.css');






body {
    display: flex;
    margin: 1px;
    overflow: hidden;
    background-color: transparent;
    cursor: crosshair;
}


::-webkit-scrollbar {
    display: none;
}


.calendar-container {
    display: block;
    position: relative;
    width: 230px;
    max-width: 235px;
    height: 370px;
    overflow: hidden;
    right: 0px;
}


.icon {
    position: absolute;
    width: 20px;
    height: 20px;
    background-size: contain;
    background-repeat: no-repeat;
    right: 6px;
    top: 150px;
    transition: all 0.2s ease-in-out;
    image-rendering: pixelated;
}

.icon:hover {
    transform: scale(1.1);
    filter: brightness(1.2);
    image-rendering: pixelated;
}

.icon:hover::after {
    content: "Go Back";
    position: absolute;
    left: 50%;
    bottom: 100%;
    transform: translateX(-80%);
    font-family: 'Itim', sans-serif;
    font-size: 12px;
    background: var(--cal);
    color: #ffffff;
    text-shadow: 0 1px #000000, 1px 0px #000000, 0 -1px #000000, -1px 0px #000000;
    padding: 3px 7px;
    border-radius: 4px;
    white-space: nowrap;
    transition: all 0.2s ease-in-out;
}


button {
    all: unset;
}

button:hover {
    background-color: var(--cal2);
    transition: all 0.2s ease-in-out;
}

#prevMonthBtn:hover, #nextMonthBtn:hover {
    transform: scale(1.1);
}

#prevMonthBtn {
    position: absolute;
    left: 5px;
    top: 3px;
    image-rendering: pixelated;
}

#nextMonthBtn {
    position: absolute;
    right: 5px;
    top: 3px;
    image-rendering: pixelated;
}

#prevMonthBtn:hover::after {
    content: "Prev";
    position: absolute;
    left: 50%;
    top:30px;
    transform: translateX(-50%);
    font-family: 'Itim', sans-serif;
    font-size: 12px;
    background: var(--cal);
    color: #ffffff;
    text-shadow: 0 1px #000000, 1px 0px #000000, 0 -1px #000000, -1px 0px #000000;
    padding: 3px 5px;
    border-radius: 4px;
    white-space: nowrap;
}

#nextMonthBtn:hover::after {
    content: "Next";
    position: absolute;
    left: 50%;
    top:30px;
    transform: translateX(-50%);
    font-family: 'Itim', sans-serif;
    font-size: 12px;
    background: var(--cal);
    color: #ffffff;
    text-shadow: 0 1px #000000, 1px 0px #000000, 0 -1px #000000, -1px 0px #000000;
    padding: 3px 5px;
    border-radius: 4px;
    white-space: nowrap;
}


.month {
    background: var(--cal) !important;
    background-image: none !important;
    background-size: auto !important;
    background-position: center !important;
}



.month-title {
    text-align: center;
    font-size: 14px;
    font-weight: bold;
    text-transform: uppercase;
    color: #ffffff;
    letter-spacing: 2.4px;
    text-shadow: 0 1px #000000, 1px 0px #000000, 0 -1px #000000, -1px 0px #000000;
}


table {
    width: 100%;
    table-layout: fixed;
    font-size: 13px;
    font-family: 'Itim', sans-serif;
    text-align: center;
    border: 0;
    text-transform: uppercase;
    color: #000000;
    text-shadow: 0 1px white, 1px 0px white, 0 -1px white, -1px 0px white;
    background: none;
    font-weight: bold;
}


td {
    padding: 2px;
    font-size: 10px;
    background: #ffffff;
    border: 1px solid rgba(0,0,0,0.3);
    border-radius: 2px;
}



.week {
    background: var(--cal2);
    color: #ffffff;
    border: 1px dashed #000000;
    text-shadow: 0 1px #000000, 1px 0px #000000, 0 -1px #000000, -1px 0px #000000;
    font-size: 8px;
    font-weight: bold;
    
}


.current-day {
    color: #ffffff;
    text-shadow: 0 1px black, 1px 0px black, 0 -1px black, -1px 0px black;
    font-weight: bold;
    border: 1px dashed var(--cal3);
}


.hover-link {
    cursor: crosshair;
    font-weight: bold;
    color: var(--cal3);
}


.hover-preview {
    position: absolute;
    pointer-events: none;
    z-index: 1000;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    
}

.hover-preview-img {
    display: block;
    max-width: 50px;
    max-height: 50px;
    width: auto;
    height: auto;
    transform: scale(2); 
    position: relative;
    bottom: 105px;
    background: white;
    opacity: 85%;
    border: 1px dashed var(--accent);
    image-rendering: pixelated; 
}


.preview-text {
    font-family: 'Itim', sans-serif;
    font-size: 12px;
    color: black;
    background: white;
    border: 1px dashed var(--cal2);
    padding: 5px;
    margin-top: -99px;
    display: inline-block;
    width: fit-content;
    text-align: center;
}
