* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    cursor: url("/graphs/cursor/Normal.cur"), auto;
}

:any-link,
:any-link * {
    cursor: url("/graphs/cursor/Pin.cur"), pointer !important;
}

button,
video,
select,
input:not([type="text"]):not([type="password"]):not([type="email"]),
[onclick] {
    cursor: url("/graphs/cursor/Pin.cur"), pointer !important;
}

[data-page],
[data-page] * {
    cursor: url("/graphs/cursor/Pin.cur"), pointer !important;
}

#openGifyBtn,
#openGifyBtn *,
#openGuestBtn,
#openGuestBtn * {
    cursor: url("/graphs/cursor/Pin.cur"), pointer !important;
}


/* Loading/wait cursor */
.loading {
    cursor: url("/graphs/cursor/Working.cur"), wait;
}

@font-face {
    font-family: "Hiragino";
    src: url("fonts/Hiragino-Kaku-Gothic-Pro-W3.otf");
}

@font-face {
    font-family: "Osaka";
    src: url("fonts/Osaka.ttf");
}

a,
a img {
    cursor: pointer;
}

html {
    background: url('/graphs/bgs/body-bg.gif');
    font-family: 'MS PGothic', 'Hiragino', 'Osaka', sans-serif;
}

/* default link-btn appearance is pink */
.link-btn {
    padding-left: 20%;
    text-decoration: underline;
    margin-bottom: 5px;
    display: block;
    border-radius: 5px;
    color: #FF6699;
    border: 1px solid #ff69b4;
    background: linear-gradient(to bottom,
            #ffeffb 0,
            #ffbbdb 50%,
            #ffa5cc 51%,
            #ffb1d5 100%);
    color: #fff;
    text-shadow:
        -1px -1px 0 #ff69b4,
        1px -1px 0 #ff69b4,
        -1px 1px 0 #ff69b4,
        1px 1px 0 #ff69b4;
    font-weight: bold;
}

.box {
    background: #fff0fa;
    border: 2px dashed #ff7acb;
    padding: 12px;
    border-radius: 10px;
}

.rainbow {
    background: linear-gradient(90deg, red, orange, yellow, lime, cyan, blue, violet, red);
    background-size: auto;
    background-clip: border-box;
    background-size: 400%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: rainbow-move 6s linear infinite, glow 1.5s ease-in-out infinite;
}

@keyframes rainbow-move {
    0% {
        background-position: 0%;
    }

    100% {
        background-position: 400%;
    }
}

@keyframes glow {
    0% {
        text-shadow: 0 0 8px rgba(255, 255, 255, 0.4), 0 0 16px rgba(255, 255, 255, 0.3), 0 0 24px rgba(255, 255, 255, 0.2);
    }

    50% {
        text-shadow: 0 0 16px rgba(255, 255, 255, 0.8), 0 0 32px rgba(255, 255, 255, 0.6), 0 0 48px rgba(255, 255, 255, 0.4);
    }

    100% {
        text-shadow: 0 0 8px rgba(255, 255, 255, 0.4), 0 0 16px rgba(255, 255, 255, 0.3), 0 0 24px rgba(255, 255, 255, 0.2);
    }
}

/*************** container/wrapper ***************/
#main-contain {
    margin: 50px auto;
    padding: 3px;
    width: 90%;
    max-width: 1000px;
    display: grid;
    grid-template-areas:
        "header header header"
        "left main right";
    grid-template-columns: 200px auto 200px;
    gap: 0px;
    background: orange;
}

/*************** header ***************/
header {
    grid-area: header;
    margin: 0px;
    margin-bottom: 0px;
    display: flex;
    flex-direction: column;
}

header #banner {
    width: 100%;
}

header p {
    background-color: #ffff99;
}


/*************** left sidebar ***************/
#left {
    grid-area: left;
    background: pink;
    padding: 10px;
}

#left h2 {
    background: url("/graphs/rndGIFS/module.gif") no-repeat left;
    font-size: 1.1rem;
    font-weight: bold;
    text-align: right;
    height: 50px;
}

#left img {
    max-width: 100%;
    /* makes sure it doesnt expand the sidebar */
}

/*** nav + nav links ***/
#left ul {
    list-style-type: none;
    padding-left:10px;
    margin-bottom:8px;
    line-height:130%;
    text-align:left;
}

#left li img {
    padding-right: 5px;
}

#left .red-btn {
    padding-left: 20%;
    text-decoration: underline;
    margin-bottom: 5px;
    display: block;
    border-radius: 5px;
    color: #FF6699;
    border: 1px solid #ff69b4;
    font-weight: bold;
    background: linear-gradient(to bottom, #fec4c4 0%, #f46464 50%, #f93939 51%, #fc8686 100%);
    border-color: #e82929;
    color: #fff;
    text-shadow:
        -1px -1px 0 #e82929,
        1px -1px 0 #e82929,
        -1px 1px 0 #e82929,
        1px 1px 0 #e82929;
}

#left .orange-btn {
    padding-left: 20%;
    text-decoration: underline;
    margin-bottom: 5px;
    display: block;
    border-radius: 5px;
    color: #FF6699;
    border: 1px solid #ff69b4;
    font-weight: bold;
    background: linear-gradient(to bottom, #fee1c4 0%, #f4ac64 50%, #f99939 51%, #fcc186 100%);
    border-color: #e86629;
    color: #fff;
    text-shadow:
        -1px -1px 0 #e86629,
        1px -1px 0 #e86629,
        -1px 1px 0 #e86629,
        1px 1px 0 #e86629;
}

#left .yellow-btn {
    padding-left: 20%;
    text-decoration: underline;
    margin-bottom: 5px;
    display: block;
    border-radius: 5px;
    color: #FF6699;
    border: 1px solid #ff69b4;
    font-weight: bold;
    background: linear-gradient(to bottom, #fff3d6 0%, #fcd362 50%, #ffc115 51%, #fbe39f 100%);
    border-color: #ce831b;
    color: #fff;
    text-shadow:
        -1px -1px 0 #ce831b,
        1px -1px 0 #ce831b,
        -1px 1px 0 #ce831b,
        1px 1px 0 #ce831b;
}

#left .green-btn {
    padding-left: 20%;
    text-decoration: underline;
    margin-bottom: 5px;
    display: block;
    border-radius: 5px;
    color: #FF6699;
    border: 1px solid #ff69b4;
    font-weight: bold;
    background: linear-gradient(to bottom, #beedb7 0%, #84ef71 50%, #45e222 51%, #84ef71 100%);
    border-color: #1cad1c;
    color: #fff;
    text-shadow:
        -1px -1px 0 #1cad1c,
        1px -1px 0 #1cad1c,
        -1px 1px 0 #1cad1c,
        1px 1px 0 #1cad1c;
}

#left .lightblue-btn {
    padding-left: 20%;
    text-decoration: underline;
    margin-bottom: 5px;
    display: block;
    border-radius: 5px;
    color: #FF6699;
    border: 1px solid #ff69b4;
    font-weight: bold;
    background: linear-gradient(to bottom, #e1faff 0%, #a5ecff 50%, #7fe4ff 51%, #a4eeff 100%);
    border-color: #4bbcd9;
    color: #fff;
    text-shadow:
        -1px -1px 0 #4bbcd9,
        1px -1px 0 #4bbcd9,
        -1px 1px 0 #4bbcd9,
        1px 1px 0 #4bbcd9;
}

#left .blue-btn {
    padding-left: 20%;
    text-decoration: underline;
    margin-bottom: 5px;
    display: block;
    border-radius: 5px;
    color: #FF6699;
    border: 1px solid #ff69b4;
    font-weight: bold;
    background: linear-gradient(to bottom, #b4d8f4 0%, #73bff5 50%, #249fec 51%, #73bff5 100%);
    border-color: #1d6dd7;
    color: #fff;
    text-shadow:
        -1px -1px 0 #1d6dd7,
        1px -1px 0 #1d6dd7,
        -1px 1px 0 #1d6dd7,
        1px 1px 0 #1d6dd7;
}

#left .purple-btn {
    padding-left: 20%;
    text-decoration: underline;
    margin-bottom: 5px;
    display: block;
    border-radius: 5px;
    color: #FF6699;
    border: 1px solid #ff69b4;
    font-weight: bold;
    background: linear-gradient(to bottom, #e1c5f1 0%, #ce90f2 50%, #ab50e8 51%, #ce90f2 100%);
    border-color: #8f37db;
    color: #fff;
    text-shadow:
        -1px -1px 0 #8f37db,
        1px -1px 0 #8f37db,
        -1px 1px 0 #8f37db,
        1px 1px 0 #8f37db;
}

.nav-btn.nav-active {
    outline: 2px solid #ff99d9;
    box-shadow: 0 0 8px rgba(255, 153, 217, 0.3);
}

li a:hover,
.link-btn:hover {
    filter: brightness(1.15);
    transform: translateY(-1px);
}

.bubble {
    position: relative;
    width: 215px;
    height: 255px;
    padding: 0px;
    background: #FFFFFF;
    border-radius: 2px;
}

.bubble:after {
    content: '';
    position: absolute;
    border-style: solid;
    border-width: 15px 15px 15px 0;
    border-color: transparent #FFFFFF;
    display: block;
    width: 0;
    z-index: 1;
    left: -15px;
    top: 162px;
}

/*************** main content ***************/
main {
    grid-area: main;
    background: url('/graphs/bgs/pika.gif');
    padding: 10px;
    min-width: 0;
    /* prevents content from resizing the column */
}

main h2 {
    color: green;
    text-align: center;
}

#page-container .page {
    display: none;
}

#statuscafe {
    padding: .5em;
    background-image: url("/graphs/PNGs/polkadot.png"), linear-gradient(#edf5ff, white, white);
    background-size: 14px;
    border: 2px solid #bbd9f1;
    border-radius: 5px;
    color: #6972b0;
    overflow: auto;
}

.updates span {
    color: #ffdef1;
}

.updates hr {
    border-color: rgba(255, 255, 255, 0.491);
}

.updates img {
    width: 100px;
    position: absolute;
    bottom: 0;
    right: -40px;
    filter: drop-shadow(5px 5px 1px white);
}

.stats {
    grid-area: stats;
}

.stats p {
    display: inline;
}

.quiz-and-webrings {
    display: flex;
    gap: 15px;
    margin-top: 10px;
    align-items: flex-start;
    position: relative; /* Add this */
}

.quiz-column {
    display: flex;
    flex-direction: column;
    width: 180px;
    flex-shrink: 0; /* Don't let it shrink */
}

.quiz-results {
    width: 280px;
    background: pink;
    border-radius: 10px;
    padding: 10px;
    overflow-y: auto;
    max-height: 250px;
    margin: 0;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.quiz-results::-webkit-scrollbar {
    display: none;
}

.quiz-results img {
    max-width: 100%;
}

.webrings {
    flex: 1;
    min-width: 0;
    margin-top: 100px; /* Push webrings down */
}

.webrings img {
    max-width: 100%;
}

.webrings #persona-pmoring,
.p5center {
    width: 100% !important;
}

.webrings .title-bar-controls button {
    border: none;
    border-radius: 0;
    box-sizing: border-box;
    color: transparent;
    min-height: 23px;
    min-width: 75px;
    padding: 0 12px;
    text-shadow: 0 0 #222;
}

.webrings .title-bar-controls button {
    background: silver;
    box-shadow: inset -1px -1px #0a0a0a, inset 1px 1px #fff, inset -2px -2px grey, inset 2px 2px #dfdfdf;
}

.webrings .title-bar-controls button:active {
    box-shadow: inset -1px -1px #fff, inset 1px 1px #0a0a0a, inset -2px -2px #dfdfdf, inset 2px 2px grey;
    text-shadow: 1px 1px #222;
}

@font-face {
    font-family: "Pixelated MS Sans Serif";
    src: url("https://files.catbox.moe/1za99g.woff") format("woff");
    src: url("https://files.catbox.moe/8fwbkl.woff2") format("woff2");
    font-weight: normal;
    font-style: normal;
}

.webrings .window {
    box-shadow: inset -1px -1px #0a0a0a, inset 1px 1px #dfdfdf, inset -2px -2px #808080, inset 2px 2px #ffffff;
    background: #c0c0c0;
    text-align: center;
    color: #000;
    padding: 3px;
    width: 100%;
}

.webrings .title-bar {
    background: url('https://vocaloid-resources.neocities.org/entry%20graphics/miku/banners%20and%20dividers/mikufan1.png');
    background-size: cover;
    padding: 3px 2px 3px 3px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.webrings .title-bar-text {
    font-weight: bold;
    color: white;
    letter-spacing: 0;
    margin-right: 24px;
}

.webrings .title-bar-controls {
    display: flex;
}

.webrings .title-bar-controls button {
    padding: 0;
    display: block;
    min-width: 16px;
    min-height: 14px;
}

.webrings .title-bar-controls button:active {
    padding: 0;
}

.webrings .title-bar-controls button:focus {
    outline: none;
}

.webrings .title-bar-controls button[aria-label=Minimize] {
    background-image: url("https://raw.githubusercontent.com/jdan/98.css/main/icon/minimize.svg");
    background-position: bottom 3px left 4px;
    background-repeat: no-repeat
}

.webrings .title-bar-controls button[aria-label=Maximize] {
    background-image: url("https://raw.githubusercontent.com/jdan/98.css/4a2282dd9170cabf730fb5803d1153d86b2e94e3/icon/maximize.svg");
    background-position: top 2px left 3px;
    background-repeat: no-repeat;
}

.webrings .title-bar-controls button[aria-label=Close] {
    background-image: url("https://raw.githubusercontent.com/jdan/98.css/main/icon/close.svg");
    background-position: top 3px left 4px;
    background-repeat: no-repeat;
    margin-left: 2px;
}

.webrings .window-body {
    margin: 8px;
}

/* literally only part ive custom coded so it scrolls . i also like the effect the fieldset adds */
.webrings .fieldset {
    border: 1px gray solid;
    box-shadow: white 1px 1px 0px inset, white 1px 1px 0px, white 0px 1px 0px, white 1px 0px 0px;
    margin: 0;
    padding: 10px;
    overflow-y: auto;
    overflow-x: hidden;
    height: 190px;
    text-align: center;
}

.fanlistings img {
    width: 50px;
    height: 50px;
    image-rendering: crisp-edges;
}

/*************** right sidebar ***************/
#right {
    grid-area: right;
    background: paleturquoise;
    padding: 10px;
}

#right h2 {
    background: url("/graphs/module.gif") no-repeat right top;
    font-size: 1.1rem;
    font-weight: bold;
    text-align: left;
    height: 50px;
}

#right .stamps {
    text-align: center;
}

#right .cliques {
    font-size: small;
}

#right img {
    max-width: 100%;
}

#right ul {
    list-style-type: none;
}

#right li img {
    padding-right: 5px;
}

.popup {
    z-index: 100;
    width: auto;
    background: white;
    border: 2px solid #555;
    border-radius: 6px;
    position: absolute;
    display: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transform-origin: center;
}

.popup.show {
    display: block;
    animation: popupIn 0.3s ease-out;
}

.popup-header {
    background: #2979ff;
    color: white;
    padding: 10px;
    cursor: move;
    border-radius: 6px 6px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.popup iframe {
    display: block
}

#guestPopup .popup-header {
    background: #ff66cc;
}

.close {
    cursor: pointer;
    font-size: 22px;
    font-weight: bold;
}

@keyframes popupIn {
    0% {
        transform: scale(0.75);
        opacity: 0;
    }

    70% {
        transform: scale(1.05);
        opacity: 1;
    }

    100% {
        transform: scale(1);
    }
}

/*************** discord status ***************/

#status-blob {
    border-radius: 50%;
    height: 10px;
    width: 10px;
    /* margin top to align is prob bad but idk how to css... */
    margin-top: 4px;
}

#status-details {
    margin: 0;
    padding-right: 5px;
}

.status {
    display: flex;
    flex-direction: row;
}

/*************** Konata Layout ***************/

/* Main container for home page layout */
.home-layout {
    position: relative;
    overflow: visible;
}

/* Make Konata go higher, above the banner */
.konata {
    float: left;
    height: 800px;
    margin-left: -120px;
    margin-right: -80px;
    pointer-events: none;
    position: relative;
    z-index: 1;
    margin-top: -60px; /* Pull Konata up above the banner */
}

/* Also pull the hand up to match */
.konata-hand {
    position: absolute;
    filter: drop-shadow(2px 2px 2px black);
    left: -120px;
    top: -60px; /* Adjusted: was 50px, now matches Konata going up */
    height: 800px;
    pointer-events: none;
    z-index: 10;
}

/* Move the content stack up too */
.content-stack {
    position: absolute;
    top: 0px;
    right: 0px;
    z-index: 2;
    width: 300px;
}

/* Pink text box */
.pink-box {
    background: #fff0fa;
    border: 2px dashed #ff7acb;
    padding: 12px;
    border-radius: 10px;
    position: relative;
    z-index: 3;
    overflow: hidden; /* Prevent float interference */
}

.pink-box p {
    margin: 0;
    text-align: left;
    width: 100%;
    display: block;
}

/* Status cafe wrapper - for positioning */
.statuscafe-wrapper {
    position: relative;
    z-index: 4;
    margin-top: -30px; /* Pull up to overlap pink box */
    margin-left: 40px;
}

/* Status cafe with speech bubble and tilt */
.statuscafe.speech-bubble {
    background: url("/graphs/bgs/box1.jpg");
    background-size: 100% 100%;
    border-radius: 10px;
    padding: 18px;
    width: 240px;
    position: relative;
    transform: rotate(2deg); /* Slight tilt */
    box-shadow: 3px 3px 8px rgba(0,0,0,0.15);
}

/* Speech bubble tail */
.statuscafe.speech-bubble::before {
    content: '';
    position: absolute;
    left: -20px;
    top: 40%;
    border-style: solid;
    border-width: 12px 20px 12px 0;
    border-color: transparent #fff transparent transparent;
    filter: drop-shadow(-2px 0 2px rgba(0,0,0,0.1));
}

.video-of-the-week {
    background: #fff0f5;
    border: 3px dashed #ffb6c1;
    border-radius: 12px;
    padding: 12px;
    margin-top: 15px;
    margin-left: 60px;
    width: 180px;
    text-align: center;
    box-shadow: inset 0 0 0 4px #fff;
}

.video-of-the-week h3 {
    font-family: 'MS PGothic', sans-serif;
    font-size: 0.85rem;
    color: #ffb6c1;
    margin: 0 0 8px 0;
    letter-spacing: 2px;
}

.video-of-the-week video {
    width: 100%;
    border-radius: 20px;
    border: 2px solid #e6e6fa;
    background: linear-gradient(to bottom, #e6e6fa, #d8bfd8);
}

.video-of-the-week .video-description {
    font-size: 0.75rem;
    color: #d8a0b5;
    margin: 8px 0 0 0;
}

/* Updates/Chalkboard section */
.updates {
    position: relative;
    margin-top: 15px;
    z-index: 5; /* Higher z-index to appear over Konata */
}

.chalkboard {
    border: 5px ridge peru;
    background: #2b3d0c;
    color: white;
    overflow: auto;
    padding: 8px;
    max-height: 150px;
    width: 280px;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.chalkboard::-webkit-scrollbar {
    display: none;
}

/* Container beside Konata - don't float it! */
.beside-konata {
    overflow: hidden; /* Creates BFC to wrap around float */
}

/* Text box styling */
.text-content {
    display: block;
    overflow: hidden; /* Block float interference */
}

.text-content .box {
    background: #fff0fa;
    border: 2px dashed #ff7acb;
    padding: 12px;
    border-radius: 10px;
    overflow: hidden;
}

/* Remove grid from fun-stuff-container and restructure */
.fun-stuff-container {
    margin-top: 10px;
}

/* Status cafe - overlapping text box (legacy - keeping for backwards compat) */
.statuscafe:not(.speech-bubble) {
    background: url("/graphs/box1.jpg");
    background-size: 100% 100%;
    border-radius: 10px;
    padding: 18px;
    position: relative;
    z-index: 3;
    margin-top: -50px;
    margin-left: 20px;
    max-width: 380px;
}

.clear-float {
    clear: both;
}

#statistics {
    position: relative;
    padding: 5px 10px;
    font-size: 0.9rem;
    margin-left: -270px;
    width: fit-content;
    z-index: 5;
    margin-top: -160px;
}


.fanlistings {
    padding: 5px;
    background: #fff8fb;
    border: 2px solid #ffb6d9;
    border-radius: 12px;
    text-align: center;
    margin-top: 10px;
}

.gif-space {
    min-height: 100px;
    width: 180px;
}

/*************** Retro PC Video ***************/
.retro-pc {
    position: relative;
    width: 250px;
    left: 10%;
}

.retro-pc .pc-frame {
    width: 100%;
    display: block;
    position: relative;
    z-index: 2;
    pointer-events: none; /* Allows clicking through to video */
}

.retro-pc .pc-screen {
    position: absolute;
    top: 10%;
    left: 22%;
    width: 66%;
    height: 33%;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000;
    overflow: hidden;
}

.retro-pc .pc-screen video,
.retro-pc .pc-screen iframe {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 0;
    object-fit: cover;
}

/*-------shrines--------*/

.shrine-grid {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 15px;
    padding: 10px;
}

.shrine-banner {
    display: block;
    border: 3px solid #ff7acb;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.2s, box-shadow 0.2s;
    max-width: 100%;
}

.shrine-banner:hover {
    transform: scale(1.02);
    box-shadow: 0 4px 12px rgba(255, 122, 203, 0.4);
}

.shrine-banner img {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 3 / 1; /* 1500/500 = 3:1 ratio */
    object-fit: cover;
}

.shrine-banner.coming-soon {
    opacity: 0.7;
    border-style: dashed;
}

/*************** About Page - Full Width ***************/
body.about-page #right {
    display: none;
}

body.about-page #main-contain {
    grid-template-areas:
        "header header header"
        "left main main";
    grid-template-columns: 200px auto;
}

body.about-page main {
    grid-column: 2 / 4;
}

#left a[href*="clap.fc2.com"] {
    display: block;
    text-align: center;
}

#left a[href*="clap.fc2.com"] img {
    display: inline-block;
}

/*************** Calendar ***************/

.moe-calendar-float {
    position: fixed;
    width: 320px;
    background: url('YOUR_BACKGROUND_IMAGE.png') repeat;
    border: 3px solid #c9a0dc;
    border-radius: 10px;
    padding: 10px;
    padding-top: 0;
    font-family: 'MS PGothic', sans-serif;
    z-index: 9999;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    user-select: none; /* prevents text selection while dragging */
}

.cal-drag-handle {
    background: linear-gradient(to bottom, #d8b0e8, #c9a0dc);
    color: white;
    padding: 5px 10px;
    margin: 0 -10px 10px -10px;
    border-radius: 7px 7px 0 0;
    cursor: grab;
    font-weight: bold;
    font-size: 12px;
    text-align: center;
}

.cal-drag-handle:active {
    cursor: grabbing;
}

.cal-character {
    position: absolute;
    right: -30px;
    top: 50%;
    transform: translateY(-50%);
    width: 100px;
    pointer-events: none;
    z-index: 2;
}

.cal-character img {
    width: 100%;
}

.cal-content {
    width: 70%;
    background: rgba(255, 255, 255, 0.85);
    border-radius: 8px;
    padding: 10px;
}

.cal-header {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    background: #fff;
    border: 2px solid #c9a0dc;
    border-radius: 20px;
    padding: 5px 15px;
    margin-bottom: 10px;
    font-weight: bold;
    color: #8b5a8b;
}

.cal-prev, .cal-next {
    cursor: pointer;
    color: #ff69b4;
    font-size: 12px;
}

.cal-prev:hover, .cal-next:hover {
    color: #ff1493;
}

.cal-table {
    width: 100%;
    border-collapse: collapse;
    text-align: center;
    font-size: 12px;
}

.cal-table th {
    padding: 5px 2px;
    color: #666;
    font-weight: normal;
}

.cal-table th.sun { color: #ff6b6b; }
.cal-table th.sat { color: #4dabf7; }

.cal-table td {
    padding: 4px 2px;
}

.cal-table td.today {
    background: #ff69b4;
    color: white;
    border-radius: 50%;
    font-weight: bold;
}

.cal-table td.sun { color: #ff6b6b; }
.cal-table td.sat { color: #4dabf7; }



/*************** Stamps marquee ***************/

.stamp-marquee {
    overflow: hidden;
    width: 100%;
    padding: 5px 0;
}

.stamp-track {
    display: flex;
    gap: 10px;
    width: max-content;
    animation: scroll-stamps 20s linear infinite;
}

.stamp-track:hover {
    animation-play-state: paused;
}

.stamp-track img {
    height: 31px;
    width: auto;
}

@keyframes scroll-stamps {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}