/* ³¯Â¥ ½½¶óÀÌ´õ ÄÁÅ×ÀÌ³Ê (È­»ìÇ¥ Æ÷ÇÔ ºÎ¸ð ºí·Ï) */
    .date-slider-wrapper {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: space-between;
        background-color: #ffffff;
        box-sizing: border-box;
        border-bottom: 1px solid #f0f0f0;
        font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
        
        /* [ÇØ°á] ºÎ¸ð ¿µ¿ª ¹ÛÀ¸·Î ³ª°¡´Â ¿ä¼Ò¸¦ ¼û°Ü È­¸é ÀüÃ¼ Èçµé¸² ¹æÁö */
        overflow: hidden; 
    }

    /* È­»ìÇ¥ ¹öÆ° ½ºÅ¸ÀÏ */
    .slider-arrow {
        background: none;
        border: none;
        color: #999999;
        cursor: pointer;
        padding: 20px 15px;
        user-select: none;
        z-index: 10;
        flex-shrink: 0; /* ¸ð¹ÙÀÏ¿¡¼­ È­»ìÇ¥ Å©±â °íÁ¤ */
    }

    .slider-arrow.left {
        background: url('/images/Member/ico_select.png');
        transform: rotate(90deg); /* ÁÂ·Î 90µµ È¸Àü */
        background-repeat: no-repeat;
        background-position: center; 
        background-size: 20px;
    }

    .slider-arrow.right {
        background: url('/images/Member/ico_select.png');
        transform: rotate(-90deg);  /* ¿ì·Î 90µµ È¸Àü */
        background-repeat: no-repeat;
        background-position: center; 
        background-size: 20px;
    }
    
    .slider-arrow:hover {
        color: #333333;
    }

    /* ³¯Â¥µéÀ» °¨½Î´Â ¸¶½ºÅ© (³ÑÄ¡´Â ºÎºÐ ¼û±è) */
    .date-slider-viewport {
        flex: 1;
        overflow: hidden;
        position: relative;
        height: 55px; /* ³ôÀÌ °íÁ¤ */
        min-width: 0; /* ºäÆ÷Æ® À¯¿¬¼º È®º¸ */
        cursor: grab; /* µå·¡±× °¡´ÉÇÔÀ» ¸¶¿ì½º Æ÷ÀÎÅÍ·Î Ç¥½Ã */
    }
    .date-slider-viewport:active {
        cursor: grabbing;
    }

    /* ½ÇÁ¦·Î ÁÂ¿ì·Î ¿òÁ÷ÀÏ ¿òÁ÷ÀÓ ÆÇ */
    .date-track {
        display: flex;
        position: absolute;
        left: 0;
        top: 0;
        height: 100%;
        will-change: transform; /* ¸ð¹ÙÀÏ ºÎµå·¯¿î °¡¼Ó ÃÖÀûÈ­ */
    }

    /* °³º° ³¯Â¥ Ä­ */
    .date-item {
        width: 85px; /* °íÁ¤ ³Êºñ */
        flex-shrink: 0; /* ³Êºñ°¡ Àý´ë ÁÙ¾îµéÁö ¾Êµµ·Ï °íÁ¤ */
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        font-size: 15px;
        color: #888888;
        cursor: pointer;
        user-select: none;
        position: relative;
        box-sizing: border-box;
    }

    
    .date-item:hover{
        background-color: #a9a9a9;
        color : #fff;
    }


    /* ¼±ÅÃµÈ ³¯Â¥ ½ºÅ¸ÀÏ¿¡¸¸ º¼µå ¹× »¡°£»ö ¹ØÁÙ Àû¿ë */
    .date-item.active {
        font-weight: bold;
        color: #000000;
    }
    
    /* »¡°£ ¹ØÁÙ ¾Ö´Ï¸ÞÀÌ¼Ç Ã³¸® */
    .date-item::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 10%;
        right: 10%;
        height: 3px;
        background-color: #ff3b30;
        transform: scaleX(0);
        transition: transform 0.2s ease;
    }
    .date-item.active::after {
        transform: scaleX(1); /* È°¼ºÈ­ ½Ã ½º¹«½ºÇÏ°Ô ³ªÅ¸³² */
    }