.notice-content {
    max-width: 1200px;
    margin: 0 auto 100px auto;
    padding: 2rem;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

/* 검색 도구 스타일 */
.notice-tools {
    margin-top: 2rem;
}

.search-area {
    display: flex;
    justify-content: center;
    gap: 1rem;
    align-items: center;
    max-width: 600px;
    margin: 0 auto;
}

.search-type {
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    min-width: 100px;
}

.search-box {
    display: flex;
    flex: 1;
}

.search-input {
    flex: 1;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 4px 0 0 4px;
    font-size: 1rem;
}

.search-button {
    padding: 0.75rem 1.5rem;
    background-color: #05A2BE;
    color: white;
    border: none;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
}

/* 테이블 스타일 */
.notice-list table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 2rem;
}

.notice-list th,
.notice-list td {
    padding: 1rem;
    text-align: center;
    border-bottom: 1px solid #eee;
}

.notice-list th {
    background-color: #f8f9fa;
    font-weight: 600;
}

.checkbox-cell {
    width: 40px;
    text-align: center;
    white-space: nowrap;
}



.checkbox-cell label {
    margin-left: 0.25rem;
    font-size: 0.9rem;
    color: #666;
    cursor: pointer;
}

.checkbox-all-checked {
    width: 100px;
}

.checkbox-all-checked label {
    color: #222222;
    font-size: 1rem;
}
/* 미트볼 메뉴 스타일 */
.action-cell {
    width: 60px;
    position: relative;
}

.meatball-menu {
    position: relative;
    display: inline-block;
}

.meatball-button {
    background: none;
    border: none;
    padding: 0.5rem;
    cursor: pointer;
    color: #666;
}

.dropdown-menu {
    display: none;
    position: absolute;
    right: 0;
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    border-radius: 4px;
    min-width: 120px;
    z-index: 1000;
}

.meatball-menu:hover .dropdown-menu {
    display: block;
}

.dropdown-item {
    display: block;
    width: 100%;
    padding: 0.75rem 1rem;
    text-align: left;
    border: none;
    background: none;
    cursor: pointer;
}

.dropdown-item:hover {
    background-color: #f8f9fa;
}

.notice-list-ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    border-top: 1px solid #e6e8eb;
}

.notice-list-ul .notice-list-li  {
    width: 100%;
    padding: 20px 0;
    border-bottom: 1px solid #e6e8eb;
}

.notice-list-li .li-inner-div {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 2px 20px;
}

.notice-list-li .li-inner-div .notice-cat {
    width: 110px;
    overflow: hidden;
    font-size: 16px;
    line-height: 28px;
    text-align: center;
}

.notice-list-li .li-inner-div .notice-link {
    flex: 1;
    line-height: 28px;
    font-weight: bold;
}

.notice-list-li .li-inner-div .notice-date {
    flex: 1;
    line-height: 28px;
    width: 150px;
    max-width: 150px;
}

.admin-view-group {
    display: flex;
    justify-content: space-between;
    height: 40px;
    align-items: center;
    margin-bottom: 25px;
}

/* 버튼 그룹 묶은 div 스타일 */
.notice-admin-div {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* 버튼 그룹 스타일 */
.button-group {
    display: flex;
    gap: 1rem;
    margin-left: auto;
}

.write-button,
.delete-button {
    padding: 0.65rem 1.2rem;
    border-radius: 8px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    color: #F0F2F2;
}

.write-button {
    background-color: #05A2BE;
}

.write-button:hover {
    background-color: #03849b;
}

.delete-button {
    background-color: #A8A8A8;
}

.delete-button:hover {
    background-color: #FF333A;
}

/* 반응형 디자인 */
@media (max-width: 768px) {
    .notice-section {
        padding: 2rem 0;
    }

    .notice-content {
        padding: 1rem;
    }

    .title-cell {
        max-width: 200px;
    }

    .admin-view-group {
        margin-top: 10px;
    }

    .button-group {
        flex-direction: row;
    }

    .search-area {
        flex-direction: column;
        gap: 0.5rem;
    }

    .search-type {
        width: 100%;
    }

    .search-box {
        width: 100%;
    }
}