/* 커스텀 스크롤바 */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: #1A1A1A; 
}
::-webkit-scrollbar-thumb {
    background: #D22730; 
    border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
    background: #E56B1F; 
}
/* 이미지 플레이스홀더 스타일 */
.img-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #2a2a2a;
    color: #777;
    font-weight: bold;
    text-align: center;
    padding: 1rem;
}