/* Start custom CSS for shortcode, class: .elementor-element-a46bbef *//* 外層容器排版：文字提示與選單 */
.custom-jump-wrapper {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 25px;
    align-items: flex-start;
}

/* 提示標籤文字（例如：快速前往其他彈數...） */
.custom-jump-label {
    font-size: 14px !important;
    font-weight: 600 !important;
    color: #4a5568 !important;
    line-height: 1.2 !important;
}

/* 下拉選單本體設計（強制撐開高度，解決切字問題） */
.custom-jump-select {
    width: 100% !important;
    max-width: 320px !important;
    height: 46px !important;                 /* 強制固定高度，確保字體完全顯示 */
    line-height: 24px !important;             /* 強制設定標準行高 */
    padding: 10px 35px 10px 15px !important;  /* 微調內部上下左右留白 */
    font-size: 15px !important;               /* 字體大小 */
    color: #2d3748 !important;                /* 文字顏色 */
    background-color: #ffffff !important;     /* 背景白色 */
    border: 1px solid #cbd5e1 !important;     /* 邊框淺灰 */
    border-radius: 6px !important;            /* 圓角 */
    box-sizing: border-box !important;        /* 確保高度計算包含內距 */
    cursor: pointer;
    outline: none;
    
    /* 移除瀏覽器預設外觀，改用現代質感箭頭 */
    appearance: none !important;
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://w3.org' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23718096' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><polyline points='6 9 12 15 18 9'></polyline></svg>") !important;
    background-repeat: no-repeat !important;
    background-position: right 12px center !important;
    background-size: 16px !important;
    
    transition: all 0.2s ease;
}

/* 滑鼠懸停與點擊選取時的紅色邊框動態質感 */
.custom-jump-select:focus, 
.custom-jump-select:hover {
    border-color: #a12c2c !important;         /* 配合您畫面的紅色系 */
    box-shadow: 0 0 0 3px rgba(161, 44, 44, 0.1) !important;
}

/* 下拉選單內的群組標題（如：SD系列、SJ系列） */
.custom-jump-select optgroup {
    font-weight: 700 !important;
    color: #718096 !important;
    background: #f7fafc !important;
}

/* 下拉選單內的選項文字（如：SD59、SJ19） */
.custom-jump-select option {
    padding: 8px !important;
    font-size: 14px !important;
    color: #2d3748 !important;
    background: #ffffff !important;
}

/* 手機版與平板自動拉伸填滿，方便用手指點擊 */
@media (max-width: 767px) {
    .custom-jump-select {
        max-width: 100% !important;           /* 在手機上變寬，更好操作 */
    }
}/* End custom CSS */