@charset "utf-8";

.notice-container {
    max-width: 100%;
    margin: 2px auto;
    padding: 10px;
    background: #f9f9f9;
    font-family: 'Segoe UI', sans-serif;
}

.notice-title {
    font-size: 18px;
    font-weight: bold;
    color: #333;
    margin-bottom: 10px;
    text-align: center;
}

.notice-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.notice-item {
    padding: 15px 10px;
    border-bottom: 1px solid #ddd;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: background 0.3s;
}

.notice-item:hover {
    background: #eef6ff;
}

.notice-link {
    text-decoration: none;
    color: #0078d4;
    font-weight: 500;
    flex-grow: 1;
}

.lock-icon {
    color: #d9534f;
    font-size: 14px;
    background: #ffecec;
    padding: 4px 8px;
    border-radius: 6px;
}

.new-icon {
    color: #fff;
    background: #28a745;
    font-size: 12px;
    padding: 4px 6px;
    border-radius: 6px;
    font-weight: bold;
}

.notice-empty {
    text-align: center;
    padding: 20px;
    color: #999;
    font-style: italic;
}