* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}
body {
    background: #f0f5ff;
    min-height: 100vh;
}
.page-wrap {
    width: 100%;
    max-width: 1250px;
    margin: 0 auto;
    padding: 0;
    box-sizing: border-box;
}
.top-header {
    width: 100%;
    max-width: 1250px;
    background: #fff;
    padding: 10px 27px;
    margin: 1px auto 0;
    border-radius: 12px;
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}
.header-main {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.header-left {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 0 0 auto;
}
.cloud-logo {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    object-fit: cover;
    box-shadow: 0 2px 8px rgba(0, 102, 255, 0.15);
}
.site-name-wrap {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}
.site-name-top {
    font-size: 20px;
    font-weight: 700;
    color: #222;
    background: linear-gradient(135deg, #0066ff, #00aaff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.site-name-bottom {
    font-size: 12px;
    color: #888;
}
.header-center {
    flex: 1;
    max-width: 550px;
    margin: 0 40px;
}
#headerSearchForm {
    display: flex;
}
.header-search-input {
    width: 100%;
    padding: 10px 16px;
    border: 2px solid #0066ff;
    border-right: none;
    border-radius: 25px 0 0 25px;
    font-size: 14px;
    outline: none;
}
.header-search-btn {
    background: #0066ff;
    color: #fff;
    border: 2px solid #0066ff;
    padding: 10px 24px;
    border-radius: 0 25px 25px 0;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
}

.header-right {
    display: flex;
    gap: 20px;
    align-items: center;
}
.user-info {
    display: flex;
    align-items: center;
    gap: 8px;
}
.user-avatar {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    object-fit: cover;
}
.user-name {
    font-size: 14px;
    color: #333;
}
.user-link {
    font-size: 12px;
    color: #666;
    text-decoration: none;
    padding: 4px 8px;
}
.user-link.logout {
    color: #f53f3f;
}
.login-btn {
    font-size: 14px;
    color: #666;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 5px;
}
.header-right > a {
    text-decoration: none;
    font-size: 14px;
    color: #666;
    padding: 8px 18px;
    border-radius: 999px;
}
.header-icon-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    cursor: pointer;
    color: #666;
}
.header-icon-item svg {
    width: 20px;
    height: 20px;
}
.header-icon-item span {
    font-size: 12px;
}
.main-container {
    max-width: 1200px;
    margin: 80px auto 24px;
    padding: 0 27px;
}
.stat-wrap {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 16px;
    margin-bottom: 22px;
}
.stat-card {
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    border: 1px solid #cce0ff;
}
.stat-desc {
    font-size: 15px;
    margin-bottom: 6px;
    font-weight: bold;
}
.stat-number {
    font-size: 30px;
    font-weight: 900;
    color: #0066ff;
}
.type-tab-wrap {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
}
.type-tab {
    padding: 10px 26px;
    border-radius: 8px;
    border: none;
    font-size: 14px;
    cursor: pointer;
    background: #e6e9ef;
    color: #333;
}
.type-tab.active {
    background: #0066ff;
    color: #fff;
}
.list-wrap {
    background: #ffffff;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.05);
}
.list-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 16px;
}
.list-inner {
    width: 100%;
}
.list-header, .script-item {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    align-items: center;
    column-gap: 10px;
}
.list-header {
    padding: 0 16px 12px;
    color: #888;
    font-size: 14px;
}
.script-item {
    padding: 8px 16px;
    background: #fff;
    border: 1px solid #ddeaff;
    border-radius: 20px;
    margin-bottom: 21px;
}
.script-name {
    font-weight: bold;
    font-size: 17px;
}
.tag-py {
    background: #e6f7ef;
    color: #00b42a;
    padding: 5px 14px;
    border-radius: 999px;
    font-size: 13px;
    display: inline-block;
}
.tag-js {
    background: #e8f3ff;
    color: #0066ff;
    padding: 5px 14px;
    border-radius: 999px;
    font-size: 13px;
    display: inline-block;
}
.tag-official {
    background: linear-gradient(135deg, #0066ff, #00aaff);
    color: #fff;
    padding: 5px 14px;
    border-radius: 999px;
    font-size: 13px;
    display: inline-block;
    font-weight: 500;
    box-shadow: 0 2px 8px rgba(0, 102, 255, 0.3);
}
.tag-admin {
    background: linear-gradient(135deg, #722ed1, #9254de);
    color: #fff;
    padding: 5px 14px;
    border-radius: 999px;
    font-size: 13px;
    display: inline-block;
    font-weight: 500;
    box-shadow: 0 2px 8px rgba(114, 46, 209, 0.3);
}
.tag-user {
    background: linear-gradient(135deg, #f53f3f, #ff7875);
    color: #fff;
    padding: 5px 14px;
    border-radius: 999px;
    font-size: 13px;
    display: inline-block;
    font-weight: 500;
    box-shadow: 0 2px 8px rgba(245, 63, 63, 0.3);
}
.download-btn {
    background: #0066ff;
    color: #fff;
    border: none;
    padding: 10px 24px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 14px;
    box-shadow: 0 2px 8px rgba(0,102,255,0.2);
}
.tip-box {
    margin-top: 20px;
    background: #fff;
    border-radius: 12px;
    padding: 18px;
    font-size: 13px;
    line-height: 1.7;
    color: #444;
}
.tip-box p {
    margin-bottom: 8px;
}
.tip-title {
    font-weight: 600;
    color: #f53f3f;
}
.partner-box {
    margin-top:16px;
    background:#fff;
    border-radius:12px;
    padding:18px;
}
.partner-box h4 {
    font-size:15px;
    margin-bottom:12px;
    border-left:4px solid #0066ff;
    padding-left:8px;
}
.link-list {
    display:flex;
    gap:10px;
    flex-wrap:wrap;
}
.link-list a {
    padding:8px 14px;
    background:#e8f3ff;
    color:#0066ff;
    border-radius:6px;
    text-decoration:none;
    font-size:13px;
}
.partner-link {
    display:flex;
    align-items:center;
    gap:6px;
}
.partner-logo {
    width:24px;
    height:24px;
    border-radius:4px;
    object-fit:cover;
    flex-shrink:0;
}
.modal-mask {
    position: fixed;
    left:0;top:0;right:0;bottom:0;
    background: rgba(0,0,0,0.6);
    display:none;
    z-index:10000;
    padding: 90px 20px 40px;
}
.modal-box{
    max-width: 680px;
    width:100%;
    margin:0 auto;
    background:#fff;
    border-radius:16px;
    padding:20px;
    height: auto;
    min-height: auto;
    overflow: hidden;
    display: block;
}
.modal-top{
    display:flex;
    justify-content: space-between;
    align-items:center;
    margin-bottom:14px;
}
.modal-close{
    font-size:20px;
    cursor:pointer;
    color:#666;
}
.log-wrap-shell {
    max-height: 400px;
    overflow-y: auto;
    padding-right: 8px;
    -webkit-overflow-scrolling: touch;
}
.log-item {
    border-bottom:1px solid #ddd;
    padding:12px 0;
    margin-bottom: 0;
}
.log-item:last-child {
    border-bottom: none;
}
.log-ver {
    font-weight:bold;
    color:#f53f3f;
    font-size:15px;
}
.log-time {
    font-size:13px;
    color:#888;
    margin:4px 0;
}
.log-content {
    line-height:1.7;
    font-size:14px;
}
.float-qq-btn {
    position: fixed;
    right: 20px;
    bottom: 90px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #00a4ff;
    box-shadow: 0 4px 12px rgba(0,164,255,0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9998;
}
.btn-pass {
    background: #f53f3f;
    color: #fff;
    border: none;
    padding: 10px 32px;
    border-radius: 30px;
    font-size: 14px;
    cursor: pointer;
}
.side-float-bar {
    position: fixed;
    right: 2px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    background: #fff;
    border-radius: 18px;
    padding: 8px 0;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    z-index: 9998;
}
.side-item {
    width: 50px;
    height: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #666;
}
.side-item:hover {
    background: rgba(0, 102, 255, 0.05);
    color: #0066ff;
}
.side-item svg {
    width: 18px;
    height: 18px;
    margin-bottom: 3px;
    filter: grayscale(100%);
    opacity: 0.7;
}
.side-item:hover svg {
    filter: grayscale(0%);
    opacity: 1;
}
.side-item span {
    font-size: 10px;
    line-height: 1;
}
.side-divider {
    height: 1px;
    background: #eee;
    margin: 4px 8px;
}
.footer-bar {
    text-align: center;
    padding: 25px 10px;
    color: #999;
    font-size: 12px;
    margin-top: 20px;
}
.footer-bar p {
    margin: 4px 0;
}
.footer-bar a {
    color: #999;
    text-decoration: none;
}
.footer-bar a:hover {
    color: #0066ff;
    text-decoration: underline;
}
.login-modal {
    background: #0d0d1a;
    align-items: center;
    justify-content: center;
}
.login-bg-overlay {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background: url('/static/login-bg.jpg') center/cover no-repeat;
    opacity: 0.8;
}
.login-box {
    position: relative;
    max-width: 420px;
    width: 90%;
    max-height: 85vh;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 48px 36px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    overflow-y: auto;
}
.login-box::-webkit-scrollbar {
    display: none;
}
.login-box {
    -ms-overflow-style: none;
    scrollbar-width: none;
}
.login-logo {
    text-align: center;
    margin-bottom: 16px;
}
.login-logo img {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    object-fit: cover;
    box-shadow: 0 4px 16px rgba(0, 102, 255, 0.3);
}
.login-title {
    text-align: center;
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 32px;
}
.login-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}
.login-form input {
    width: 100%;
    padding: 14px 18px;
    border: none;
    border-radius: 12px;
    font-size: 15px;
    background: rgba(255, 255, 255, 0.9);
    color: #333;
    transition: all 0.25s ease;
}
.login-form input:focus {
    outline: none;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(0, 102, 255, 0.3);
}
.login-form input::placeholder {
    color: #999;
}
.login-form button {
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, #0066ff, #00aaff);
    color: #fff;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s ease;
    box-shadow: 0 4px 16px rgba(0, 102, 255, 0.4);
}
.login-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 102, 255, 0.5);
}
.login-form .switch-btn {
    background: transparent;
    color: rgba(255, 255, 255, 0.8);
    padding: 8px 0;
    font-size: 14px;
}
.login-form .switch-btn:hover {
    color: #fff;
}
.login-form .error-tip {
    color: #ff6b6b;
    font-size: 13px;
    text-align: center;
}
.password-input-wrap {
    position: relative;
}
.password-tips {
    display: none;
    position: absolute;
    left: 0;
    bottom: calc(100% + 8px);
    background: #fff;
    border-radius: 12px;
    padding: 12px;
    min-width: 100%;
    border: 1px solid #e8f3ff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    z-index: 10;
}
.password-input-wrap:focus-within .password-tips {
    display: block;
}
.tip-item {
    font-size: 13px;
    color: #666;
    line-height: 1.8;
}
.login-box .modal-close {
    position: absolute;
    right: 20px;
    top: 20px;
    font-size: 24px;
    color: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    transition: color 0.2s;
}
.login-box .modal-close:hover {
    color: #fff;
}
.member-page-wrap {
    min-height: 100vh;
    background: #f0f5ff;
}
.member-page-wrap .main-container {
    margin-top: 10px;
}
.top-nav {
    background: #fff;
    padding: 12px 27px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 1px 4px rgba(0,0,0,0.05);
}
.nav-left {
    display: flex;
    align-items: center;
    gap: 12px;
}
.nav-left .site-name {
    font-size: 20px;
    font-weight: 700;
    background: linear-gradient(135deg, #0066ff, #00aaff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.nav-right {
    display: flex;
    align-items: center;
    gap: 20px;
}
.nav-right span {
    color: #666;
    font-size: 14px;
}
.nav-right button {
    padding: 6px 16px;
    background: #f53f3f;
    color: #fff;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 13px;
}
.nav-right button:first-child {
    background: linear-gradient(135deg, #0066ff, #00aaff);
    margin-left: 10px;
}
.tabs {
    display: flex;
    gap: 8px;
    margin-bottom: 20px;
}
.tab-btn {
    padding: 10px 24px;
    background: #fff;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    color: #666;
    transition: all 0.2s;
}
.tab-btn.active {
    background: linear-gradient(135deg, #0066ff, #00aaff);
    color: #fff;
}
.card {
    background: #fff;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    margin-bottom: 20px;
}
.card-title {
    font-size: 18px;
    font-weight: 600;
    color: #222;
    margin-bottom: 20px;
}
.add-form {
    display: flex;
    gap: 12px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}
.add-form input, .add-form select {
    padding: 10px 14px;
    border: 1px solid #d0d7e3;
    border-radius: 8px;
    font-size: 14px;
    width: 100%;
}
.add-form button {
    padding: 10px 20px;
    background: linear-gradient(135deg, #0066ff, #00aaff);
    color: #fff;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 500;
}
.empty-tip {
    text-align: center;
    color: #999;
    padding: 40px;
}
.member-card {
    background: #fff;
    border-radius: 16px;
    padding: 30px;
    margin-bottom: 20px;
    text-align: center;
}
.member-avatar-lg {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 15px;
}
.member-name {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 10px;
}
.member-level {
    display: inline-block;
    background: #e8f3ff;
    color: #0066ff;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
}
.member-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 25px;
}
.member-stat-item {
    text-align: center;
}
.member-stat-num {
    font-size: 22px;
    font-weight: 600;
    color: #0066ff;
}
.member-stat-label {
    font-size: 12px;
    color: #888;
    margin-top: 4px;
}
.member-menu {
    background: #fff;
    border-radius: 16px;
    padding: 20px;
}
.menu-item {
    display: flex;
    align-items: center;
    padding: 16px 20px;
    border-bottom: 1px solid #f0f0f0;
    cursor: pointer;
    gap: 15px;
    transition: all 0.2s ease;
    border-radius: 10px;
    margin: 4px 0;
}
.menu-item:last-child {
    border-bottom: none;
}
.menu-item:hover {
    background: #f8fafc;
    padding-left: 28px;
}
.menu-item:hover .menu-arrow {
    transform: translateX(5px);
}
.menu-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.menu-icon.blue { background: #e8f3ff; }
.menu-icon.green { background: #e6f7ef; }
.menu-icon.orange { background: #fff7e6; }
.menu-icon.red { background: #fff0f0; }
.menu-icon.gray { background: #f5f5f5; }
.menu-icon.purple { background: #f3e8ff; }
.logout-item {
    color: #f53f3f;
}
.logout-item .menu-text {
    color: #f53f3f;
}
.menu-text {
    flex: 1;
    font-size: 15px;
    color: #333;
}
.menu-arrow {
    color: #999;
    font-size: 12px;
    transition: transform 0.2s ease;
}
@media screen and (max-width: 880px) {
    .top-header {
        padding: 10px 8px;
    }
    .header-main {
        flex-wrap: wrap;
        gap: 10px;
    }
    .header-center {
        order: 3;
        width: 100%;
        max-width: none;
        margin: 0;
    }
    .header-search-input { font-size: 12px; padding: 8px 10px; }
    .header-search-btn { font-size: 12px; padding: 8px 14px; }
    .site-name { font-size: 16px; }
    .cloud-logo { width: 30px; height: 30px; }
    .header-icon-item span { font-size: 10px; }
    .header-hot-tags { display: none; }
    .main-container { padding: 80px 8px 90px; }
    .list-wrap { padding:10px; }
    .list-header, .script-item { grid-template-columns: 22% 10% 15% 18% 15% 20%; gap:5px; }
    .script-item { padding:4px 6px; margin-bottom:12px; border-radius:14px; }
    .script-name { font-size: 12px; }
    .list-header { font-size: 10px; padding:0 6px 8px; }
    .tag-py,.tag-js,.tag-official,.tag-admin,.tag-user { padding: 2px 4px; font-size: 8px; border-radius:6px; }
    .download-btn { padding:4px 8px; font-size: 9px; border-radius:6px; }
    .type-tab { padding: 6px 10px; font-size:10px; }
    .search-input,.type-select,.filter-button { font-size:10px; padding: 8px; }
    .search-box-wrap { padding:12px; }
    .search-title { font-size:12px; margin-bottom:10px; }
    .type-tab-wrap { gap:8px; margin-bottom:12px; }
    .stat-card { padding:12px; }
    .stat-desc { font-size:11px; }
    .stat-number { font-size:22px; }
    .tip-box { padding:12px; font-size:10px; }
    .partner-box { padding:12px; }
    .partner-box h4 { font-size:12px; }
    .side-float-bar {
        right: auto;
        top: auto;
        bottom: 10px;
        left: 50%;
        transform: translateX(-50%);
        flex-direction: row;
        border-radius: 20px;
        padding: 6px;
        box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
    }
    .side-item {
        width: 48px;
        height: 48px;
        flex-direction: column;
        border-radius: 14px;
    }
    .side-item svg {
        width: 18px;
        height: 18px;
        margin-bottom: 2px;
    }
    .side-item span {
        font-size: 9px;
    }
    .side-divider {
        height: 36px;
        width: 1px;
        margin: 6px 4px;
    }
}
.bottom-ad-bar {
    width: calc(100% - 54px);
    max-width: 1250px;
    background: rgba(180, 180, 180, 0.4);
    padding: 14px 27px;
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    border-radius: 12px;
    z-index: 999;
}
.ad-bar-left {
    display: flex;
    align-items: center;
    gap: 14px;
}
.ad-bar-text {
    font-size: 20px;
    color: #666;
}
.ad-bar-text span {
    color: #333;
    font-weight: 600;
}
.ad-bar-btn {
    background: #ffcc00;
    color: #333;
    border: none;
    padding: 11px 32px;
    border-radius: 26px;
    font-size: 20px;
    font-weight: 600;
    cursor: pointer;
}
.ad-bar-close {
    font-size: 22px;
    color: #999;
    cursor: pointer;
    padding: 4px;
}
.custom-alert-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.6);
    z-index: 2000;
    align-items: center;
    justify-content: center;
}
.custom-alert-box {
    background: #fff;
    border-radius: 16px;
    padding: 24px;
    width: 90%;
    max-width: 400px;
    text-align: center;
}
.custom-alert-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 16px;
    color: #333;
}
.custom-alert-message {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 24px;
}
.custom-alert-btn {
    background: linear-gradient(135deg, #0066ff, #00aaff);
    color: #fff;
    border: none;
    padding: 12px 32px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
}
.custom-modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.6);
    z-index: 2000;
    align-items: center;
    justify-content: center;
}
.custom-modal-box {
    background: #fff;
    border-radius: 16px;
    padding: 0;
    width: 90%;
    max-width: 600px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.15);
    max-height: 80vh;
    overflow: hidden;
}
.custom-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    border-bottom: 1px solid #f0f0f0;
    background: #f8faff;
}
.custom-modal-header h3 {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin: 0;
}
.modal-close-btn {
    width: 32px;
    height: 32px;
    border: none;
    background: none;
    font-size: 24px;
    color: #999;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    transition: all 0.2s;
}
.modal-close-btn:hover {
    background: #f0f0f0;
    color: #666;
}
.custom-modal-body {
    padding: 24px;
    max-height: calc(80vh - 120px);
    overflow-y: auto;
}
.custom-modal-footer {
    padding: 16px 24px;
    border-top: 1px solid #f0f0f0;
    display: flex;
    gap: 12px;
    justify-content: flex-end;
}
.form-group {
    margin-bottom: 16px;
}
.form-group label {
    display: block;
    font-size: 14px;
    color: #666;
    margin-bottom: 8px;
    font-weight: 500;
}
.form-group input {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #d0d7e3;
    border-radius: 10px;
    font-size: 14px;
    transition: all 0.25s ease;
    background: #fafbfc;
}
.form-group input:focus {
    outline: none;
    border-color: #0066ff;
    box-shadow: 0 0 0 3px rgba(0, 102, 255, 0.1);
    background: #fff;
}
.form-group input:disabled {
    background: #f5f5f5;
    color: #999;
    cursor: not-allowed;
}
.btn-blue {
    background: linear-gradient(135deg, #0066ff, #00aaff);
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
}
.btn-blue:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 102, 255, 0.3);
}
.btn-gray {
    background: #f0f0f0;
    color: #666;
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
}
.btn-gray:hover {
    background: #e8e8e8;
}
.btn-small-red {
    background: #f53f3f;
    color: #fff;
    border: none;
    padding: 6px 14px;
    border-radius: 6px;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.2s;
}
.btn-small-red:hover {
    background: #d93636;
}
.scripts-table {
    width: 100%;
    border-collapse: collapse;
}
.scripts-table th,
.scripts-table td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid #f0f0f0;
    font-size: 14px;
}
.scripts-table th {
    background: #f8faff;
    font-weight: 600;
    color: #666;
}
.member-content {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    border-radius: 16px;
    padding: 24px;
    margin-top: 20px;
    box-shadow: 0 4px 20px rgba(0, 102, 255, 0.08);
}
.content-header {
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid #f0f0f0;
}
.content-header h2 {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin: 0;
}
.menu-item.active {
    background: linear-gradient(135deg, #e8f3ff, #d4e8ff);
}
.menu-item.active .menu-icon blue svg {
    stroke: #0066ff;
}
.data-table {
    width: 100%;
    overflow-x: auto;
}
.data-table table {
    width: 100%;
    border-collapse: collapse;
}
.data-table th {
    background: #f8faff;
    padding: 12px;
    text-align: left;
    font-weight: 600;
    color: #666;
    font-size: 14px;
    border-bottom: 1px solid #f0f0f0;
}
.data-table td {
    padding: 14px 16px;
    border-bottom: 1px solid #f0f5ff;
    font-size: 14px;
    color: #333;
}
.data-table tr:hover td {
    background: #fafdff;
}
.data-table tr:last-child td {
    border-bottom: none;
}
.status-tag {
    padding: 4px 12px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 500;
}
.status-pending {
    background: #fff7e6;
    color: #fa8c16;
}
.status-approved {
    background: #f6ffed;
    color: #52c41a;
}
.status-rejected {
    background: #fff2f0;
    color: #ff4d4f;
}
.action-btn {
    padding: 6px 12px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 12px;
    margin-right: 6px;
    transition: all 0.2s;
}
.action-btn.approve {
    background: #52c41a;
    color: #fff;
}
.action-btn.reject {
    background: #ff4d4f;
    color: #fff;
}
.action-btn.edit {
    background: #0066ff;
    color: #fff;
}
.action-btn.delete {
    background: #f53f3f;
    color: #fff;
}