/* ======================================
   2025-12-07 Sakuma
   キャッシュサジェスト用スタイル
   ====================================== */

.group-input .control-group {
    position: relative;
}

.tf-cache-suggestions {
    position: absolute;
    left: 150px;
    right: 0;
    top: 25px;
    margin-top: 2px;
    background: rgba(255, 255, 255, 0.97);
    border: 1px solid #d6d6d6;
    border-radius: 3px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    max-height: 200px;
    overflow-y: auto;
    z-index: 1000;
    display: none;
}

.tf-cache-suggestions .suggestion-item {
    padding: 8px 12px;
    cursor: pointer;
    border-bottom: 1px solid #f0f0f0;
    font-size: 12px;
    color: #000000;
    background-color: transparent;
}

.tf-cache-suggestions .suggestion-item:last-child {
    border-bottom: none;
}

.tf-cache-suggestions .suggestion-item:hover {
    background-color: rgba(208, 249, 247, 0.8);
}

@media screen and (max-width: 750px) {
    .tf-cache-suggestions {
        left: 20.6%;
        top: 0.71rem;
        margin-top: 0.04rem;
        font-size: 0.28rem;
        max-height: 4rem;
    }
    
    .tf-cache-suggestions .suggestion-item {
        padding: 0.2rem 0.25rem;
        font-size: 0.28rem;
    }
}
