/* ==================== 管理后台样式 ==================== */
.admin-label {
    background: linear-gradient(135deg, #ff6b6b, #ee5a24);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    margin-left: 1rem;
}

.admin-page {
    padding: 100px 2rem 2rem;
    min-height: 100vh;
}

.access-denied {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: calc(100vh - 200px);
}

.admin-container {
    max-width: 1400px;
    margin: 0 auto;
}

/* ==================== 统计卡片 ==================== */
.stats-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.stat-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 15px;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
}

.stat-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.2), rgba(124, 58, 237, 0.2));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
}

.stat-info {
    display: flex;
    flex-direction: column;
}

.stat-value {
    font-size: 2rem;
    font-weight: 900;
    color: var(--primary);
}

.stat-label {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* ==================== 选项卡 ==================== */
.admin-tabs {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 1rem;
}

.tab-btn {
    padding: 0.8rem 1.5rem;
    background: transparent;
    border: 1px solid var(--border-color);
    border-radius: 10px;
    color: var(--text-secondary);
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s;
}

.tab-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.tab-btn.active {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-color: transparent;
    color: white;
}

.tab-content {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 15px;
    padding: 1.5rem;
}

.panel-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.panel-header h2 {
    font-size: 1.3rem;
}

.search-box input {
    padding: 0.6rem 1rem;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    color: var(--text-primary);
    width: 200px;
}

.search-box input:focus {
    outline: none;
    border-color: var(--primary);
}

.btn-create {
    padding: 0.6rem 1.2rem;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border: none;
    border-radius: 8px;
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-create:hover {
    transform: translateY(-2px);
    box-shadow: var(--glow);
}

/* ==================== 表格样式 ==================== */
.users-table-container,
.announcements-table-container,
.posts-table-container {
    overflow-x: auto;
}

.users-table,
.announcements-table,
.posts-table {
    width: 100%;
    border-collapse: collapse;
}

.users-table th,
.users-table td,
.announcements-table th,
.announcements-table td,
.posts-table th,
.posts-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.users-table th,
.announcements-table th,
.posts-table th {
    color: var(--text-secondary);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
}

.users-table tr:hover,
.announcements-table tr:hover,
.posts-table tr:hover {
    background: rgba(0, 212, 255, 0.05);
}

.user-id {
    font-family: monospace;
    color: var(--primary);
}

/* 用户信息单元格 */
.user-info-cell {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.user-qq-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--border-color);
}

.qq-link {
    color: var(--primary);
    text-decoration: none;
    transition: all 0.3s;
}

.qq-link:hover {
    color: var(--secondary);
    text-decoration: underline;
}
.badge {
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.badge-admin {
    background: linear-gradient(135deg, #ff6b6b, #ee5a24);
    color: white;
}

.badge-super-admin {
    background: linear-gradient(135deg, #ff6b6b, #9b59b6);
    color: white;
}

.badge-user {
    background: rgba(0, 212, 255, 0.2);
    color: var(--primary);
}

.badge-active {
    background: rgba(16, 185, 129, 0.2);
    color: #10b981;
}

.badge-banned {
    background: rgba(239, 68, 68, 0.2);
    color: #ef4444;
}

/* ==================== 操作按钮 ==================== */
.action-btns {
    display: flex;
    gap: 0.5rem;
}

.btn-action {
    padding: 0.4rem 0.8rem;
    border-radius: 6px;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.3s;
    border: 1px solid;
}

.btn-ban {
    background: rgba(239, 68, 68, 0.1);
    border-color: #ef4444;
    color: #ef4444;
}

.btn-ban:hover {
    background: #ef4444;
    color: white;
}

.btn-unban {
    background: rgba(16, 185, 129, 0.1);
    border-color: #10b981;
    color: #10b981;
}

.btn-unban:hover {
    background: #10b981;
    color: white;
}

.btn-admin {
    background: rgba(124, 58, 237, 0.1);
    border-color: #7c3aed;
    color: #7c3aed;
}

.btn-admin:hover {
    background: #7c3aed;
    color: white;
}

.btn-delete {
    background: rgba(239, 68, 68, 0.1);
    border-color: #ef4444;
    color: #ef4444;
}

.btn-delete:hover {
    background: #ef4444;
    color: white;
}

/* ==================== 超级管理员专属按钮 ==================== */
.super-admin-panel {
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.1), rgba(155, 89, 182, 0.1));
    border: 1px solid rgba(255, 107, 107, 0.3);
    border-radius: 15px;
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.super-admin-panel h3 {
    color: #ff6b6b;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.super-admin-panel .btn-set-admin {
    padding: 0.8rem 1.5rem;
    background: linear-gradient(135deg, #ff6b6b, #9b59b6);
    border: none;
    border-radius: 8px;
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.super-admin-panel .btn-set-admin:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(255, 107, 107, 0.4);
}

/* ==================== 模态框扩展 ==================== */
.modal-large {
    max-width: 600px;
}

/* ==================== 响应式 ==================== */
@media (max-width: 768px) {
    .admin-page {
        padding: 100px 1rem 1rem;
    }
    
    .admin-tabs {
        flex-wrap: wrap;
    }
    
    .panel-header {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }
    
    .search-box input {
        width: 100%;
    }
    
    .action-btns {
        flex-direction: column;
    }
}

/* ==================== 聊天监控样式 ==================== */
.panel-desc {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin: 0;
}

.chat-monitor-container {
    display: grid;
    grid-template-columns: 200px 200px 1fr;
    gap: 1rem;
    min-height: 500px;
}

.monitor-sidebar,
.monitor-partners {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    padding: 1rem;
    overflow-y: auto;
    max-height: 500px;
}

.monitor-sidebar h3,
.monitor-partners h3,
.monitor-messages h3 {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--border-color);
}

.user-select-list,
.partner-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.user-select-item,
.partner-item {
    padding: 0.8rem;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.user-select-item:hover,
.partner-item:hover {
    background: rgba(139, 92, 246, 0.2);
}

.user-select-item.active,
.partner-item.active {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
}

.user-select-item .avatar,
.partner-item .avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: bold;
}

.user-select-item .info,
.partner-item .info {
    flex: 1;
    min-width: 0;
}

.user-select-item .name,
.partner-item .name {
    font-size: 0.9rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.partner-item .count {
    font-size: 0.75rem;
    color: var(--text-secondary);
}

.empty-hint {
    text-align: center;
    color: var(--text-secondary);
    padding: 2rem;
    font-size: 0.9rem;
}

/* 聊天记录区域 */
.monitor-messages {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    display: flex;
    flex-direction: column;
}

.monitor-header {
    padding: 1rem;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.monitor-header h3 {
    margin: 0;
    border: none;
    padding: 0;
}

.btn-small {
    padding: 0.4rem 0.8rem;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border: none;
    border-radius: 6px;
    color: white;
    font-size: 0.85rem;
    cursor: pointer;
}

.message-list {
    flex: 1;
    padding: 1rem;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.monitor-message {
    display: flex;
    gap: 0.8rem;
    padding: 0.8rem;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    position: relative;
}

.monitor-message:hover {
    background: rgba(0, 0, 0, 0.3);
}

.monitor-message .msg-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: bold;
    flex-shrink: 0;
}

.monitor-message .msg-content {
    flex: 1;
    min-width: 0;
}

.monitor-message .msg-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.3rem;
}

.monitor-message .msg-sender {
    font-weight: 600;
    font-size: 0.9rem;
}

.monitor-message .msg-time {
    font-size: 0.75rem;
    color: var(--text-secondary);
}

.monitor-message .msg-edited {
    font-size: 0.7rem;
    color: #ff6b6b;
    font-style: italic;
}

.monitor-message .msg-text {
    font-size: 0.9rem;
    line-height: 1.4;
    word-wrap: break-word;
}

.monitor-message .msg-actions {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    display: flex;
    gap: 0.3rem;
    opacity: 0;
    transition: opacity 0.2s;
}

.monitor-message:hover .msg-actions {
    opacity: 1;
}

.msg-actions button {
    padding: 0.3rem 0.5rem;
    font-size: 0.75rem;
    border-radius: 4px;
    cursor: pointer;
    border: 1px solid;
}

.msg-actions .btn-edit {
    background: rgba(59, 130, 246, 0.1);
    border-color: #3b82f6;
    color: #3b82f6;
}

.msg-actions .btn-edit:hover {
    background: #3b82f6;
    color: white;
}

.msg-actions .btn-delete {
    background: rgba(239, 68, 68, 0.1);
    border-color: #ef4444;
    color: #ef4444;
}

.msg-actions .btn-delete:hover {
    background: #ef4444;
    color: white;
}

/* 响应式聊天监控 */
@media (max-width: 1024px) {
    .chat-monitor-container {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto 400px;
    }
    
    .monitor-sidebar,
    .monitor-partners {
        max-height: 200px;
    }
}

/* 管理后台手机适配 */
@media (max-width: 768px) {
    .admin-page {
        padding: 100px 0.8rem 2rem;
    }
    
    .admin-header {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .admin-header h1 {
        font-size: 1.3rem;
    }
    
    .admin-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.8rem;
    }
    
    .stat-card {
        padding: 1rem;
    }
    
    .stat-card .value {
        font-size: 1.5rem;
    }
    
    .admin-tabs {
        flex-wrap: wrap;
        gap: 0.5rem;
    }
    
    .tab-btn {
        flex: 1 1 45%;
        padding: 0.6rem 0.8rem;
        font-size: 0.85rem;
    }
    
    /* 表格横向滚动 */
    .users-table-container,
    .posts-table-container,
    .announcements-table-container {
        overflow-x: auto;
    }
    
    .users-table,
    .posts-table,
    .announcements-table {
        min-width: 600px;
        font-size: 0.85rem;
    }
    
    .users-table th,
    .users-table td,
    .posts-table th,
    .posts-table td {
        padding: 0.6rem 0.5rem;
    }
    
    .panel-header {
        flex-direction: column;
        gap: 1rem;
    }
    
    .panel-header h2 {
        font-size: 1.2rem;
    }
    
    .search-box input {
        width: 100%;
    }
    
    .btn-create {
        width: 100%;
    }
    
    /* 模态框 */
    .modal-content {
        width: 95%;
        padding: 1rem;
        max-height: 85vh;
    }
    
    .modal-large {
        width: 95%;
    }
    
    /* 聊天监控 */
    .chat-monitor-container {
        grid-template-rows: auto auto 350px;
        gap: 0.8rem;
    }
    
    .monitor-sidebar,
    .monitor-partners {
        max-height: 150px;
    }
    
    .user-select-item,
    .partner-item {
        padding: 0.6rem;
    }
    
    .monitor-message {
        padding: 0.6rem;
    }
    
    .monitor-message .msg-actions {
        position: static;
        opacity: 1;
        margin-top: 0.5rem;
    }
}

@media (max-width: 480px) {
    .admin-page {
        padding: 90px 0.5rem 1.5rem;
    }
    
    .admin-header h1 {
        font-size: 1.1rem;
    }
    
    .admin-stats {
        grid-template-columns: 1fr 1fr;
        gap: 0.5rem;
    }
    
    .stat-card {
        padding: 0.8rem;
    }
    
    .stat-card .icon {
        font-size: 1.5rem;
    }
    
    .stat-card .value {
        font-size: 1.3rem;
    }
    
    .stat-card .label {
        font-size: 0.75rem;
    }
    
    .tab-btn {
        flex: 1 1 100%;
        font-size: 0.8rem;
    }
    
    .badge {
        font-size: 0.65rem;
        padding: 0.15rem 0.4rem;
    }
    
    .action-btns {
        flex-direction: column;
        gap: 0.3rem;
    }
    
    .btn-action {
        width: 100%;
        font-size: 0.75rem;
    }
}

/* ==================== ZRY专属面板样式 ==================== */
.danger-zone {
    background: rgba(30, 30, 50, 0.8);
    border: 1px solid rgba(255, 193, 7, 0.3);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.danger-zone h3 {
    color: #ffc107;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.danger-zone p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.danger-zone.destroy-zone {
    border-color: rgba(239, 68, 68, 0.5);
    background: rgba(239, 68, 68, 0.05);
}

.danger-zone.destroy-zone h3 {
    color: #ef4444;
}

.warning-text {
    color: #ef4444 !important;
    font-weight: 600;
}

.action-row {
    display: flex;
    gap: 1rem;
    align-items: center;
    flex-wrap: wrap;
}

.action-row input {
    flex: 1;
    min-width: 200px;
    padding: 0.7rem 1rem;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    color: var(--text-primary);
    font-size: 0.95rem;
}

.action-row input:focus {
    outline: none;
    border-color: var(--primary);
}

.action-row select {
    padding: 0.7rem 1rem;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    color: var(--text-primary);
    font-size: 0.95rem;
    cursor: pointer;
}

.btn-warning {
    padding: 0.7rem 1.5rem;
    background: linear-gradient(135deg, #f59e0b, #d97706);
    border: none;
    border-radius: 8px;
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-warning:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.4);
}

.btn-danger {
    padding: 0.7rem 1.5rem;
    background: linear-gradient(135deg, #ef4444, #dc2626);
    border: none;
    border-radius: 8px;
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    animation: dangerPulse 2s ease-in-out infinite;
}

.btn-danger:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(239, 68, 68, 0.6);
}

@keyframes dangerPulse {
    0%, 100% { box-shadow: 0 0 5px rgba(239, 68, 68, 0.3); }
    50% { box-shadow: 0 0 20px rgba(239, 68, 68, 0.6); }
}

/* ZRY面板响应式 */
@media (max-width: 768px) {
    .action-row {
        flex-direction: column;
    }
    
    .action-row input,
    .action-row select,
    .btn-warning,
    .btn-danger {
        width: 100%;
    }
    
    .danger-zone {
        padding: 1rem;
    }
    
    .danger-zone h3 {
        font-size: 1rem;
    }
}

/* ==================== Satalite头衔管理样式 ==================== */
.title-grant-section {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(255, 140, 0, 0.1));
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.title-grant-section h3 {
    color: #ffd700;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.grant-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.grant-form .form-row {
    display: flex;
    gap: 1rem;
    align-items: flex-end;
    flex-wrap: wrap;
}

.grant-form .form-group {
    flex: 1;
    min-width: 150px;
}

.grant-form .form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.grant-form .form-group input,
.grant-form .form-group select {
    width: 100%;
    padding: 0.7rem 1rem;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    color: var(--text-primary);
    font-size: 0.95rem;
}

.grant-form .form-group input:focus,
.grant-form .form-group select:focus {
    outline: none;
    border-color: #ffd700;
}

.btn-grant {
    padding: 0.7rem 1.5rem;
    background: linear-gradient(135deg, #ffd700, #ff8c00);
    border: none;
    border-radius: 8px;
    color: #1a1a2e;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    white-space: nowrap;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 120px;
}

.btn-grant:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(255, 215, 0, 0.4);
}

.titled-users-section {
    margin-top: 1.5rem;
}

.titled-users-section .section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.titled-users-section h3 {
    color: var(--text-primary);
    font-size: 1.1rem;
}

.btn-refresh {
    padding: 0.5rem 1rem;
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid var(--primary);
    border-radius: 6px;
    color: var(--primary);
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-refresh:hover {
    background: var(--primary);
    color: white;
}

.titled-users-table-container {
    overflow-x: auto;
}

.titled-users-table {
    width: 100%;
    border-collapse: collapse;
}

.titled-users-table th,
.titled-users-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.titled-users-table th {
    color: var(--text-secondary);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
}

.titled-users-table tr:hover {
    background: rgba(255, 215, 0, 0.05);
}

.badge-satalite {
    background: linear-gradient(135deg, #ffd700, #ff8c00);
    color: #1a1a2e;
    font-weight: 700;
}

.badge-expired {
    background: rgba(107, 114, 128, 0.2);
    color: #6b7280;
}

.btn-revoke {
    background: rgba(239, 68, 68, 0.1);
    border-color: #ef4444;
    color: #ef4444;
}

.btn-revoke:hover {
    background: #ef4444;
    color: white;
}

.btn-extend {
    background: rgba(16, 185, 129, 0.1);
    border-color: #10b981;
    color: #10b981;
}

.btn-extend:hover {
    background: #10b981;
    color: white;
}

/* Satalite头衔响应式 */
@media (max-width: 768px) {
    .grant-form .form-row {
        flex-direction: column;
    }
    
    .grant-form .form-group {
        width: 100%;
    }
    
    .btn-grant {
        width: 100%;
    }
    
    .titled-users-table {
        min-width: 700px;
        font-size: 0.85rem;
    }
    
    .titled-users-section .section-header {
        flex-direction: column;
        gap: 0.5rem;
        align-items: flex-start;
    }
}

/* 赐予头衔区域样式 */
.grant-title-section {
    background: rgba(255, 215, 0, 0.05);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.grant-title-section h3 {
    color: #ffd700;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.grant-title-section .action-row {
    display: flex;
    gap: 1rem;
    align-items: center;
    flex-wrap: wrap;
}

.grant-title-section input,
.grant-title-section select {
    padding: 0.7rem 1rem;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    color: var(--text-primary);
    font-size: 0.95rem;
}

.grant-title-section input {
    min-width: 200px;
}

.grant-title-section input:focus,
.grant-title-section select:focus {
    outline: none;
    border-color: #ffd700;
}

.panel-desc {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-top: 0.3rem;
}
