/* Container for right-side content */
.right-content {
    margin-top: 15px;
    float: right;
    width: 100%; /* 根据页面需求调整宽度 */
}

/* Shop list container */
.account-list {
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 10px;
}

/* Individual shop item */
.account-item {
    margin-bottom: 15px;
    padding: 10px;
    background-color: #ffffff;
    border: 1px solid #ccc;
    border-radius: 5px;
}

/* Content of shop item */
.account-item-content {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* Title styling */
.account-item-title {
    font-size: 16px;
    font-weight: bold;
    color: #333;
}

/* Intro text */
.account-item-intro {
    font-size: 14px;
    color: #666;
}

/* Description styling */
.account_desc {
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    font-size: 13px;
    color: #999;
}

/* Buy button */
.account-item-create {
    margin-top: 10px;
    background-color: #007bff;
    color: #ffffff;
    padding: 8px 15px;
    border: none;
    border-radius: 3px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.account-item-create:hover {
    background-color: #0056b3;
}

.account-item-forget {
    margin-top: 10px;
    background-color: #5900ff;
    color: #ffffff;
    padding: 8px 15px;
    border: none;
    border-radius: 3px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.account-item-forget:hover {
    background-color: #0056b3;
}

/* Placeholder item styling */
.account-item-placeholder {
    text-align: center;
    color: #aaa;
}
