.custom-table-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.custom-table-container h5{
   text-align: center;
   margin-bottom: 20px;
}

.custom-table {
    width: 100%;
    background-color: white;
    border-collapse: collapse;
    margin: 20px 0;
}

.custom-table th {
    background-color: #f2f2f2;
    padding: 12px;
    text-align: left;
}

.custom-table td {
    padding: 12px;
    border: 1px solid #ddd;
}

.custom-table td:first-child {
    width: 60px;  /* 缩小序号列宽度 */
    text-align: center;
}
.custom-table td:nth-child(2) {
    width: 120px;  /* 缩小名称列宽度 */
}
.custom-table td:last-child {
    width: 100px;  /* 操作列宽度 */
}

.content-input {
    width: 100%;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-sizing: border-box;
}

.copy-btn {
    background-color: #4CAF50;
    color: white;
    border: none;
    padding: 8px 12px;
    border-radius: 4px;
    cursor: pointer;
    width: 100%;
}

.copy-btn:hover {
    background-color: #45a049;
}

.notification {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #4CAF50;
    color: white;
    padding: 15px 30px;
    border-radius: 5px;
    display: none;
    z-index: 1000;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}
