/* 전체 박스 */
.notice-box {
    background: #ffffff;
    border-radius: 12px;
    padding: 12px 14px;
    margin-bottom: 12px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    border: 1px solid #f0f0f0;
}

/* 제목 공통 */
.notice-title {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 8px;
    padding-left: 10px;
    position: relative;
}

/* 왼쪽 컬러 바 */
.notice-title::before {
    content: "";
    position: absolute;
    left: 0;
    top: 2px;
    width: 4px;
    height: 16px;
    border-radius: 2px;
}

/* 게시글 */
.notice-item {
    font-size: 16px;
    padding: 6px 4px;
    border-bottom: 1px dashed #e5e5e5;
    line-height: 1.4;
    color: inherit;
}

/* 마지막 줄 선 제거 */
.notice-item:last-child {
    border-bottom: none;
}

/* 링크 스타일 */
.notice-item a {
    color: #333;
    text-decoration: none;
    display: block;
    transition: all 0.2s;

    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* hover 효과 */
.notice-item a:hover {
    color: #ff9800;
    transform: translateX(3px);
}

/* ===== 섹션별 컬러 ===== */

/* 운전원 */
.notice-driver .notice-title {
    color: #008299;
}
.notice-driver .notice-title::before {
    background: #008299;
}

/* 카페 */
.notice-cafe .notice-title {
    color: #3E9D37;
}
.notice-cafe .notice-title::before {
    background: #3E9D37;
}

/* 상조회 */
.notice-mutual .notice-title {
    color: #997000;
}
.notice-mutual .notice-title::before {
    background: #997000;
}