.container {
    width: 40%;
}

.div-pad {
    padding-top: 5px;
    padding-bottom: 5px;
}

.page-link {
    cursor: pointer;
}

.button-container {
    display: flex;
    width: 100%;
}
.button-container .btn {
    flex: 1;
    margin: 0 5px; /* 可选：添加按钮之间的间距 */
    border-radius: 15px; /* 圆形按钮 */
    padding: 10px 15px;
    font-weight: bold; /* 字体加粗 */
}

.loading-overlay {
    position: fixed; /* 固定定位 */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* 半透明背景 */
    z-index: 9999; /* 确保遮罩在最上层 */
    display: flex;
    align-items: center; /* 垂直居中 */
    justify-content: center; /* 水平居中 */
}
.header-title {
    padding: 10px 0;
    background: linear-gradient(to bottom, #0321e3, #73f6d3);
    color: white;
    box-shadow: 0 4px 90px rgba(0,0,0,.15);
    position: relative;
    overflow: hidden;
}
.header-title::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(135deg, rgba(255,255,255,0.1), rgba(255,255,255,0));
    transform: rotate(30deg);
}
.inline-select-group {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
    padding: 0.5rem 0 0 0;
}
.select-item {
    display: flex;
    align-items: center;
    gap: 8px;
    flex: 1;
    min-width: 200px;
}
.select-item label {
    white-space: nowrap;
    margin-bottom: 0;
    font-weight: bold;
}
.select-item select {
    flex: 1;
}
.narrow-select {
    width: 120px; /* 缩窄下拉列表宽度 */
}
/* 置灰不可选择样式 */
.disabled-select {
    background-color: #e9ecef;
    color: #6c757d;
    cursor: not-allowed;
}
.user-badge {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    padding: 0.4rem 1.2rem;
    font-weight: 500;
    transition: all 0.3s ease;
}
.user-badge:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}
.user-badge i {
    margin-right: 0.5rem;
}
.user-badge {
    font-size: 1rem;
    padding: 0.3rem 0.8rem;
}
.copy-btn {
        background: rgba(255, 255, 255, 0.2);
        border: 1px solid rgba(255, 255, 255, 0.3);
        border-radius: 50px;
        padding: 0.3rem 0.5rem;
        transition: all 0.3s ease;
        cursor: pointer;
        font-size: 1.5rem;
    }
    .copy-btn:hover {
        background: rgba(255, 255, 255, 0.3);
        transform: scale(1.05);
    }
    .copy-btn.copied {
        background: rgba(40, 167, 69, 0.3);
    }
    .copy-btn {
            font-size: 0.95rem;
        }