.request-list-admin {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.admin-request-item {
    background: var(--tg-theme-secondary-bg-color, #2d3748);
    border-radius: 16px;
    padding: 16px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.admin-request-item:active {
    transform: scale(0.98);
}

.admin-request-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
    flex-wrap: wrap;
    gap: 8px;
}

.admin-request-id {
    display: flex;
    align-items: center;
    gap: 8px;
}

.request-type {
    font-size: 13px;
    font-weight: 500;
    opacity: 0.7;
}

.request-num {
    font-weight: 600;
    font-size: 14px;
}

.admin-request-status {
    font-size: 12px;
    padding: 4px 10px;
    border-radius: 20px;
    font-weight: 500;
}

.admin-request-status.pending { background: rgba(237, 137, 54, 0.2); color: #ed8936; }
.admin-request-status.processing { background: rgba(66, 153, 225, 0.2); color: #4299e1; }
.admin-request-status.approved { background: rgba(72, 187, 120, 0.2); color: #48bb78; }
.admin-request-status.published { background: rgba(72, 187, 120, 0.2); color: #48bb78; }
.admin-request-status.answered { background: rgba(159, 122, 234, 0.2); color: #9f7aea; }
.admin-request-status.rejected { background: rgba(245, 101, 101, 0.2); color: #f56565; }
.admin-request-status.banned { background: rgba(229, 62, 62, 0.2); color: #f56565; }

.admin-request-text {
    font-size: 14px;
    margin-bottom: 12px;
    line-height: 1.4;
    opacity: 0.8;
}

.admin-request-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 11px;
    opacity: 0.5;
    flex-wrap: wrap;
    gap: 8px;
}

.tabs {
    display: flex;
    gap: 4px;
    margin-bottom: 16px;
    background: var(--tg-theme-secondary-bg-color, #2d3748);
    border-radius: 12px;
    padding: 4px;
}

.tab {
    flex: 1;
    padding: 10px;
    text-align: center;
    background: transparent;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s;
    color: var(--tg-theme-text-color, #e2e8f0);
}

.tab.active {
    background: var(--tg-theme-button-color, #4a5568);
    color: var(--tg-theme-button-text-color, white);
}

.modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    padding: 16px;
}

.modal-container {
    background: var(--tg-theme-secondary-bg-color, #2d3748);
    border-radius: 24px;
    max-width: 500px;
    width: 100%;
    max-height: 90%;
    overflow-y: auto;
    animation: slideUp 0.2s ease-out;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 20px 16px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.modal-title {
    font-size: 20px;
    font-weight: 600;
}

.modal-close {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    padding: 0 8px;
    opacity: 0.6;
}

.modal-close:hover {
    opacity: 1;
}

.modal-info, .modal-text, .modal-reply {
    padding: 16px 20px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.info-row {
    display: flex;
    justify-content: space-between;
    padding: 6px 0;
    font-size: 14px;
}

.info-label {
    font-weight: 500;
    opacity: 0.6;
}

.info-value {
    text-align: right;
}

.text-label, .reply-label {
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 14px;
}

.text-content, .reply-content {
    background: rgba(0,0,0,0.2);
    padding: 12px;
    border-radius: 12px;
    font-size: 14px;
    line-height: 1.5;
    white-space: pre-wrap;
}

.modal-actions {
    padding: 16px 20px;
}

.actions-group {
    margin-bottom: 16px;
}

.actions-group:last-child {
    margin-bottom: 0;
}

.actions-title {
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 12px;
    opacity: 0.7;
}

.actions-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.action-btn {
    padding: 10px 16px;
    border: none;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    background: var(--tg-theme-button-color, #4a5568);
    color: var(--tg-theme-button-text-color, white);
}

.action-btn:active {
    transform: scale(0.96);
}

.action-btn.publish { background: #2f855a; }
.action-btn.approve { background: #2c5282; }
.action-btn.reply { background: #553c9a; }
.action-btn.reject { background: #9b2c2c; }
.action-btn.ban { background: #c05621; }
.action-btn.send { background: #2f855a; }
.action-btn.cancel { background: #4a5568; }

.confirm-box {
    background: rgba(0,0,0,0.3);
    border-radius: 12px;
    padding: 16px;
    text-align: center;
}

.confirm-text {
    font-size: 15px;
    margin-bottom: 12px;
}

.reply-textarea {
    width: calc(100% - 40px);
    margin: 16px 20px;
    padding: 12px;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    background: var(--tg-theme-bg-color, #1a202c);
    color: var(--tg-theme-text-color, #f7fafc);
    font-family: inherit;
}

.form-select {
    width: 100%;
    padding: 12px;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    background: var(--tg-theme-bg-color, #1a202c);
    color: var(--tg-theme-text-color, #f7fafc);
    font-family: inherit;
}

.form-group {
    padding: 0 20px;
    margin-bottom: 16px;
}

.form-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    font-size: 14px;
}

.ban-info {
    padding: 16px 20px;
}

.unban-btn {
    background: #2c5282;
    color: white;
    border: none;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    cursor: pointer;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}