.reset-btn-style {
    all: unset; /* 重置所有样式 */
    display: flex;
    align-items: center;
    border: 1px solid #ccc; /* 自定义边框 */
    padding: 16px;
    border-radius: 8px;
    background-color: white;
    color: #333;
    cursor: pointer;
}

.reset-btn-style img {
    margin-right: 16px;
}

.reset-btn-style.active {
    border-color: black;
}

.hidden {
    display: none !important;
}

#customModal {
    z-index: 1000;
}

#subscriptionModal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* 背景透明度 */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

#subscriptionModal .modal-content {
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    max-width: 400px; /* 设置模态框内容的最大宽度 */
    width: 100%; /* 内容宽度占满模态框 */
}