.news-ticker {
                display: flex;
                align-items: center;
                gap: 10px;
                white-space: nowrap;
                overflow: hidden;
                text-overflow: ellipsis;
            }

            .news-label {
                background-color: #ffc107;
                color: #000;
                padding: 4px 10px;
                border-radius: 4px;
                font-weight: bold;
                font-size: 14px;
            }

            .news-badge {
                background-color: #dc3545;
                color: #fff;
                padding: 2px 6px;
                border-radius: 4px;
                font-size: 12px;
            }

            .news-text {
                font-size: 14px;
                color: #333;
            }

            .search-box {
                display: flex;
                border: 1px solid #ccc;
                border-radius: 4px;
                overflow: hidden;
            }

            .search-input {
                flex: 1;
                padding: 6px 10px;
                border: none;
                outline: none;
                font-size: 14px;
            }

            .search-button {
                background-color: #333;
                color: #fff;
                border: none;
                padding: 0 12px;
                display: flex;
                align-items: center;
                justify-content: center;
            }

            
.sidebar {
        max-width: 300px;
        font-family: Arial, sans-serif;
        color: #333;
    }

    /* 박스 공통 */
    .sidebar-box {
        border: 1px solid #ddd;
        border-radius: 6px;
        background: #fff;
        margin-bottom: 15px;
        overflow: hidden;
    }

    .sidebar-header {
        background: #222;
        color: #fff;
        font-size: 14px;
        font-weight: bold;
        padding: 8px 10px;
    }

    .sidebar-icon {
        margin-right: 5px;
    }

    /* 리스트 */
    .sidebar-list {
        list-style: none;
        margin: 0;
        padding: 8px 10px;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 5px;
    }

    .sidebar-list li {
        font-size: 13px;
        display: flex;
        align-items: center;
    }

    .sidebar-icon-sm {
        font-size: 12px;
        margin-right: 5px;
    }

    /* N 뱃지 */
    .sidebar-new {
        background: #e60023;
        color: #fff;
        font-size: 10px;
        font-weight: bold;
        border-radius: 3px;
        padding: 1px 3px;
        margin-left: 5px;
    }

    /* 단독 링크 */
    .sidebar-link {
        border: 1px solid #ddd;
        border-radius: 6px;
        background: #333;
        color: #fff;
        font-size: 14px;
        font-weight: bold;
        padding: 10px;
        margin-bottom: 15px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        cursor: pointer;
    }

    .sidebar-arrow {
        font-size: 12px;
    }

    /* 별도의 버튼 스타일 */
.btnYellow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    background-color: #ffcc00;
    color: #333;
    font-weight: 600;
    font-size: 14px;
    border-radius: 6px;
    padding: 10px 15px;
    border: none;
    cursor: pointer;
}
.btnYellow:hover {
    background-color: #e6b800;
}

.btnRed {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    background-color: #e63946;
    color: #fff;
    font-weight: 600;
    font-size: 14px;
    border-radius: 6px;
    padding: 10px 15px;
    border: none;
    cursor: pointer;
}
.btnRed:hover {
    background-color: #cc2f3b;
}

.btnYellow i,
.btnRed i {
    margin-right: 6px;
    font-size: 16px;
}

/* 업체 정보 박스 */
.companyBox {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 6px;
    padding: 15px;
    font-size: 14px;
    color: #555;
    line-height: 1.6;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}
.companyBox strong {
    font-size: 15px;
    color: #000;
}
.companyBox a {
    color: #0d6efd;
    text-decoration: none;
}
.companyBox a:hover {
    text-decoration: underline;
}
