.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    overflow-y: hidden; /* 隐藏垂直滚动条 */
    overflow-x: auto; /* 保留水平滚动条 */
    height: auto; /* 设置容器高度为自适应 */
}

h1 {
    text-align: left;
	font-size: 16px;
    color: #660000;
}
h2 {
    margin-bottom: 10px;
}

.add-link-form {
    margin-bottom: 20px;
}

.link-list {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
}

.link-list li {
    width: calc(11.11% - 20px);
    margin-right: 20px;
    margin-bottom: 10px;
}

.link-list a {
    display: block;
    text-decoration: none;
    color: #333;
    font-weight: normal;
    text-align: left;
}

.delete-form {
    display: inline;
}

.logout-link {
    display: block;
    text-align: center;
    margin-top: 20px;
}