:root {
--ureq-bg: #202020;
--ureq-panel: #121111;
--ureq-item-bg: #303030;
--ureq-item-hover: #383838;
--ureq-border: #303030;
--ureq-accent: #348bc8;
--ureq-accent-hover: #2b6f9e;
--ureq-text: #dadada;
--ureq-text-main: #dadada;
--ureq-text-light: #ffffff;
--ureq-text-muted: #cacaca;
--ureq-muted: #888888;
--ureq-success: #4ade80;
--ureq-error: #f87171;
--ureq-danger: #e74c3c;
--ureq-warning: #fbbf24;
--ureq-info: #348bc8;
--ureq-radius: 10px;
--ureq-input-bg: #000000;
--app-height: 100dvh;
}
.ureq-wrapper {
width: 100%;
margin: 0 auto;
box-sizing: border-box;
}
.ureq-wrapper *,
.ureq-wrapper *::before,
.ureq-wrapper *::after {
box-sizing: border-box;
}
.ureq-app {
display: flex;
height: 80vh;
min-height: 600px;
max-height: 900px;
background: var(--ureq-panel);
border-radius: var(--ureq-radius);
overflow: hidden;
border: 1px solid var(--ureq-border);
color: var(--ureq-text-main);
position: relative;
}
.ureq-sidebar {
width: 380px;
background: var(--ureq-panel);
border-right: 1px solid var(--ureq-border);
display: flex;
flex-direction: column;
flex-shrink: 0;
z-index: 2;
}
.ureq-sidebar-header {
padding: 15px;
border-bottom: 1px solid var(--ureq-border);
display: flex;
flex-direction: column;
gap: 12px;
background: var(--ureq-panel);
flex-shrink: 0;
}
.ureq-header-top {
display: flex;
justify-content: space-between;
align-items: center;
}
.ureq-header-top h3 {
margin: 0;
color: var(--ureq-text-light);
font-size: 20px;
font-weight: 700;
}
.ureq-btn-new {
background: var(--ureq-accent);
color: #fff;
border: none;
border-radius: var(--ureq-radius);
padding: 0 16px;
height: 36px;
font-size: 14px;
font-weight: 600;
display: flex;
align-items: center;
gap: 6px;
cursor: pointer;
transition: background-color 0.2s ease;
text-decoration: none;
-webkit-tap-highlight-color: transparent;
}
.ureq-btn-new:hover {
background: var(--ureq-accent-hover);
}
.ureq-btn-new:active {
transform: scale(0.98);
}
.ureq-search {
position: relative;
width: 100%;
}
.ureq-search input {
width: 100%;
background: var(--ureq-input-bg);
border: 1px solid var(--ureq-border);
color: #fff;
padding: 0 40px 0 15px;
height: 40px;
border-radius: var(--ureq-radius);
font-size: 16px;
outline: none;
transition: border-color 0.2s ease;
}
.ureq-search input:focus {
border-color: var(--ureq-accent);
}
.ureq-search input::placeholder {
color: var(--ureq-text-muted);
}
.ureq-search-icon {
position: absolute;
right: 12px;
top: 50%;
transform: translateY(-50%);
color: var(--ureq-text-muted);
pointer-events: none;
}
.ureq-search-clear {
position: absolute;
right: 35px;
top: 50%;
transform: translateY(-50%);
background: none;
border: none;
color: var(--ureq-text-muted);
cursor: pointer;
font-size: 18px;
padding: 5px;
display: none;
-webkit-tap-highlight-color: transparent;
}
.ureq-search.has-value .ureq-search-clear {
display: block;
}
.ureq-tabs {
display: flex;
gap: 8px;
}
.ureq-tab {
flex: 1;
background: var(--ureq-item-bg);
border: none;
color: var(--ureq-text-muted);
padding: 0;
height: 36px;
font-size: 13px;
border-radius: var(--ureq-radius);
cursor: pointer;
transition: all 0.2s ease;
font-weight: 600;
-webkit-tap-highlight-color: transparent;
}
.ureq-tab:hover {
background: var(--ureq-item-hover);
}
.ureq-tab.active {
background: var(--ureq-accent);
color: #fff;
}
.ureq-list {
flex: 1;
overflow-y: auto;
padding: 10px;
overscroll-behavior: contain;
-webkit-overflow-scrolling: touch;
}
.ureq-loading,
.ureq-error,
.ureq-empty-list {
padding: 20px;
text-align: center;
color: var(--ureq-text-muted);
}
.ureq-error {
color: var(--ureq-error);
}
.ureq-load-more {
background: var(--ureq-item-bg);
border: none;
color: var(--ureq-text-main);
height: 40px;
border-radius: var(--ureq-radius);
cursor: pointer;
font-size: 13px;
font-weight: 600;
width: 100%;
margin-top: 10px;
transition: background-color 0.2s ease;
-webkit-tap-highlight-color: transparent;
}
.ureq-load-more:hover {
background: var(--ureq-item-hover);
}
.ureq-card {
padding: 12px;
margin-bottom: 8px;
background: var(--ureq-item-bg);
border-radius: var(--ureq-radius);
cursor: pointer;
border: 1px solid transparent;
transition: all 0.15s ease;
position: relative;
-webkit-tap-highlight-color: transparent;
}
.ureq-card:hover {
background: var(--ureq-item-hover);
}
.ureq-card:active {
transform: scale(0.99);
}
.ureq-card.active {
background: var(--ureq-item-hover);
border-color: var(--ureq-accent);
}
.ureq-card-top {
display: flex;
justify-content: space-between;
align-items: flex-start;
margin-bottom: 8px;
gap: 10px;
}
.ureq-card-info {
overflow: hidden;
min-width: 0;
}
.ureq-card-title {
font-weight: 700;
color: var(--ureq-text-light);
font-size: 14px;
line-height: 1.3;
word-break: break-word;
display: block;
}
.ureq-card-alias {
font-size: 11px;
color: var(--ureq-text-muted);
margin-top: 2px;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
.ureq-card-date {
font-size: 12px;
color: var(--ureq-text-muted);
white-space: nowrap;
flex-shrink: 0;
}
.ureq-card-bottom {
display: flex;
justify-content: space-between;
align-items: center;
}
.ureq-badge {
padding: 4px 10px;
border-radius: 6px;
font-size: 11px;
font-weight: 700;
color: #fff !important;
text-shadow: 0 1px 2px rgba(0,0,0,0.3);
border: none;
}
.ureq-bdg-open,
.ureq-bdg-pending {
background: #ff9800;
}
.ureq-bdg-approved,
.ureq-bdg-scraping {
background: #7c4dff;
}
.ureq-bdg-awaiting {
background: #ff9800;
}
.ureq-bdg-downloading,
.ureq-bdg-importing,
.ureq-bdg-processing {
background: #348bc8;
}
.ureq-bdg-completed {
background: #2ea043;
}
.ureq-bdg-rejected {
background: #da3633;
}
.ureq-card-stats {
font-size: 12px;
color: var(--ureq-text-muted);
}
.ureq-card-videos {
font-size: 11px;
color: var(--ureq-success);
margin-left: 8px;
}
.ureq-main {
flex: 1;
display: flex;
flex-direction: column;
background: var(--ureq-bg);
overflow: hidden;
position: relative;
z-index: 1;
}
.ureq-empty {
flex: 1;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
color: var(--ureq-text-muted);
text-align: center;
padding: 20px;
}
.ureq-empty svg {
width: 48px;
height: 48px;
color: var(--ureq-item-bg);
margin-bottom: 20px;
}
.ureq-thread {
display: flex;
flex-direction: column;
height: 100%;
}
.ureq-thread-header {
padding: 15px;
background: var(--ureq-panel);
border-bottom: 1px solid var(--ureq-border);
flex-shrink: 0;
}
.ureq-head-row {
display: flex;
align-items: center;
justify-content: space-between;
gap: 10px;
}
.ureq-head-left {
display: flex;
align-items: center;
gap: 12px;
overflow: hidden;
min-width: 0;
}
.ureq-back-btn {
display: none;
background: none;
border: none;
color: var(--ureq-text-light);
padding: 0;
cursor: pointer;
font-size: 24px;
line-height: 1;
width: 30px;
height: 30px;
text-align: center;
flex-shrink: 0;
-webkit-tap-highlight-color: transparent;
}
.ureq-thread-info {
overflow: hidden;
min-width: 0;
}
.ureq-thread-info h2 {
margin: 0;
font-size: 18px;
color: var(--ureq-text-light);
font-weight: 700;
display: flex;
align-items: center;
gap: 8px;
flex-wrap: wrap;
word-break: break-word;
}
.ureq-thread-source {
font-size: 12px;
color: var(--ureq-text-muted);
margin: 2px 0 4px 0;
display: flex;
align-items: center;
gap: 6px;
max-width: 100%;
min-width: 0;
}
.ureq-thread-source a,
.ureq-thread-source #reqSourceLink {
color: var(--ureq-accent);
text-decoration: none;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
display: inline-block;
max-width: min(300px, calc(100vw - 120px));
vertical-align: middle;
}
.ureq-thread-source a:hover {
text-decoration: underline;
}
.req-btn-icon-inline {
background: none;
border: none;
color: var(--ureq-text-muted);
cursor: pointer;
font-size: 14px;
padding: 2px 4px;
opacity: 0.6;
transition: opacity 0.2s ease;
flex-shrink: 0;
}
.req-btn-icon-inline:hover {
opacity: 1;
}
.req-author {
color: var(--ureq-text-muted);
margin-left: 8px;
font-size: 11px;
opacity: 0.8;
}
#reqModelName {
overflow: hidden;
text-overflow: ellipsis;
min-width: 0;
flex: 1;
}
.ureq-videos-count {
font-size: 13px;
color: var(--ureq-text-muted);
background: var(--ureq-item-bg);
padding: 4px 10px;
border-radius: 6px;
}
.ureq-thread-actions {
display: flex;
gap: 8px;
flex-shrink: 0;
align-items: center;
flex-wrap: wrap;
}
.ureq-btn-link {
background: var(--ureq-accent);
color: #fff;
padding: 0 12px;
height: 32px;
border-radius: 10px;
font-weight: 600;
font-size: 13px;
text-decoration: none;
display: inline-flex;
align-items: center;
transition: background-color 0.2s ease;
}
.ureq-btn-link:hover {
background: var(--ureq-accent-hover);
}
.ureq-admin-toggle {
background: var(--ureq-item-bg);
border: 1px solid var(--ureq-border);
color: var(--ureq-text-main);
width: 32px;
height: 32px;
border-radius: 6px;
cursor: pointer;
display: flex;
align-items: center;
justify-content: center;
transition: background-color 0.2s ease;
-webkit-tap-highlight-color: transparent;
}
.ureq-admin-toggle:hover {
background: var(--ureq-item-hover);
}
.ureq-admin-panel {
display: none;
margin-top: 15px;
padding: 15px;
background: var(--ureq-item-bg);
border-radius: var(--ureq-radius);
}
.ureq-admin-panel.visible {
display: block;
}
.ureq-admin-section {
margin-bottom: 15px;
padding-bottom: 15px;
border-bottom: 1px solid var(--ureq-border);
}
.ureq-admin-section:last-of-type {
margin-bottom: 15px;
padding-bottom: 0;
border-bottom: none;
}
.ureq-admin-label {
display: block;
color: var(--ureq-text-muted);
font-size: 12px;
margin-bottom: 8px;
font-weight: 700;
}
.ureq-admin-row {
display: flex;
gap: 10px;
flex-wrap: wrap;
}
.ureq-admin-row:not(:last-child) {
margin-bottom: 10px;
}
.ureq-admin-select,
.ureq-admin-input {
background: var(--ureq-bg);
color: #fff;
border: 1px solid var(--ureq-border);
padding: 0 10px;
height: 36px;
border-radius: 6px;
font-size: 14px;
flex: 1;
min-width: 0;
}
.ureq-admin-select {
flex: 0 0 140px;
}
.ureq-admin-btn {
background: var(--ureq-accent);
color: #fff;
border: none;
padding: 0 15px;
height: 36px;
border-radius: 6px;
cursor: pointer;
font-size: 13px;
font-weight: 600;
transition: opacity 0.2s ease;
flex: 1;
-webkit-tap-highlight-color: transparent;
}
.ureq-admin-btn:hover {
opacity: 0.9;
}
.ureq-admin-btn.danger {
background: var(--ureq-error);
flex: 0 0 auto;
}
.ureq-admin-btn.primary {
background: #2ea043;
flex: 1;
}
.ureq-action-buttons {
margin-bottom: 15px;
padding-bottom: 15px;
border-bottom: 1px solid var(--ureq-border);
}
.ureq-forum-results {
background: rgba(0, 0, 0, 0.2);
border-radius: var(--ureq-radius);
padding: 12px;
}
.ureq-forum-stat {
margin-bottom: 10px;
font-size: 13px;
color: var(--ureq-text-muted);
}
.ureq-forum-stat strong {
color: var(--ureq-accent);
}
.ureq-forum-item {
display: flex;
align-items: center;
gap: 10px;
padding: 8px 0;
border-top: 1px solid var(--ureq-border);
font-size: 12px;
}
.ureq-forum-name {
background: #404040;
color: #fff;
padding: 2px 8px;
border-radius: 4px;
font-size: 11px;
text-transform: uppercase;
flex-shrink: 0;
}
.ureq-forum-link {
flex: 1;
color: var(--ureq-accent);
text-decoration: none;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
.ureq-forum-link:hover {
text-decoration: underline;
}
.ureq-forum-links {
color: var(--ureq-text-muted);
flex-shrink: 0;
}
.ureq-no-results {
color: var(--ureq-text-muted);
font-style: italic;
}
.ureq-model-block {
padding: 10px 15px;
background: rgba(0, 0, 0, 0.2);
border-bottom: 1px solid var(--ureq-border);
font-size: 13px;
color: var(--ureq-text-muted);
flex-shrink: 0;
}
.ureq-model-block span {
color: var(--ureq-text-main);
}
.ureq-separator {
margin: 0 8px;
opacity: 0.5;
}
.ureq-processing-info {
padding: 10px 15px;
background: rgba(52, 139, 200, 0.1);
border-bottom: 1px solid var(--ureq-accent);
font-size: 13px;
display: flex;
align-items: center;
gap: 10px;
flex-shrink: 0;
}
.ureq-processing-spinner {
width: 16px;
height: 16px;
border: 2px solid var(--ureq-accent);
border-top-color: transparent;
border-radius: 50%;
animation: spin 1s linear infinite;
}
@keyframes spin {
to { transform: rotate(360deg); }
}
.ureq-thread-body {
flex: 1;
overflow-y: auto;
padding: 15px;
display: flex;
flex-direction: column;
gap: 5px;
overscroll-behavior: contain;
-webkit-overflow-scrolling: touch;
}
.ureq-msg-row {
display: flex;
gap: 6px;
max-width: 70%;
margin-bottom: 8px;
}
.ureq-msg-row.grouped {
margin-bottom: 2px;
}
.ureq-msg-ava {
width: 32px;
height: 32px;
border-radius: 50%;
background: var(--ureq-item-bg);
color: var(--ureq-text-main);
display: flex;
align-items: center;
justify-content: center;
font-weight: 700;
font-size: 14px;
flex-shrink: 0;
align-self: flex-end;
}
.ureq-msg-row.grouped .ureq-msg-ava {
visibility: hidden;
}
.ureq-msg-row.grouped .ureq-msg-meta b {
display: none;
}
.ureq-msg-ava.admin {
background: var(--ureq-accent);
color: #fff;
}
.ureq-msg-content {
display: flex;
flex-direction: column;
gap: 2px;
min-width: 0;
position: relative;
}
.ureq-msg-meta {
font-size: 11px;
color: var(--ureq-text-muted);
display: flex;
gap: 6px;
align-items: center;
margin-bottom: 1px;
}
.ureq-msg-bubble > span {
position: absolute;
bottom: 3px;
right: 6px;
font-size: 10px;
color: rgba(255, 255, 255, 0.5);
pointer-events: none;
}
.ureq-msg-row.own-message .ureq-msg-bubble > span {
color: rgba(255, 255, 255, 0.7);
}
.ureq-msg-actions {
display: none;
gap: 4px;
position: absolute;
top: -2px;
right: 0;
background: rgba(0, 0, 0, 0.8);
padding: 4px;
border-radius: 6px;
z-index: 10;
}
.ureq-msg-row:hover .ureq-msg-actions {
display: flex;
}
.ureq-msg-btn {
background: none;
border: none;
color: var(--ureq-text-muted);
cursor: pointer;
padding: 2px 6px;
font-size: 16px;
line-height: 1;
border-radius: 4px;
transition: all 0.2s ease;
-webkit-tap-highlight-color: transparent;
}
.ureq-msg-btn:hover {
background: rgba(255, 255, 255, 0.1);
color: var(--ureq-text-light);
}
.ureq-msg-delete:hover {
color: var(--ureq-error);
}
.ureq-msg-bubble {
background: #2B2E3B;
border-radius: 0 12px 12px 12px;
padding: 6px 10px;
padding-right: 50px;
padding-bottom: 15px;
font-size: 14px;
line-height: 1.4;
color: var(--ureq-text-main);
word-break: break-word;
position: relative;
}
.ureq-msg-row.own-message .ureq-msg-bubble {
background: #2B5278;
color: #fff;
}
.ureq-msg-bubble a {
color: inherit;
text-decoration: underline;
font-size: 14px;
}
.ureq-msg-bubble a:hover {
opacity: 0.8;
}
.ureq-msg-row.system-message {
opacity: 0.7;
justify-content: center;
max-width: 100%;
margin: 6px 0;
}
.ureq-msg-row.system-message .ureq-msg-ava {
display: none;
}
.ureq-msg-row.system-message .ureq-msg-meta {
display: none;
}
.ureq-msg-ava.system {
background: rgba(255, 255, 255, 0.08);
color: var(--ureq-text-muted);
}
.ureq-msg-row.system-message .ureq-msg-bubble {
background: rgba(255, 255, 255, 0.05);
border: none;
font-size: 11px;
color: var(--ureq-text-muted);
padding: 4px 10px;
border-radius: 10px;
}
.ureq-msg-row.system-message .ureq-msg-bubble > span {
display: none;
}
.ureq-msg-row.system-message.grouped {
margin: 2px 0;
}
.ureq-thread-footer {
padding: 15px;
background: var(--ureq-panel);
border-top: 1px solid var(--ureq-border);
flex-shrink: 0;
}
.ureq-chat-form {
display: flex;
gap: 10px;
background: var(--ureq-bg);
border: 1px solid var(--ureq-border);
border-radius: var(--ureq-radius);
padding: 8px;
align-items: flex-end;
}
.ureq-chat-form textarea {
flex: 1;
background: transparent;
border: none;
color: #fff;
resize: none;
padding: 5px;
font-size: 16px;
min-height: 24px;
max-height: 120px;
outline: none;
line-height: 1.4;
font-family: inherit;
}
.ureq-chat-form textarea::placeholder {
color: var(--ureq-text-muted);
}
.ureq-send-btn {
width: 36px;
height: 36px;
background: var(--ureq-accent);
color: #fff;
border: none;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
cursor: pointer;
flex-shrink: 0;
transition: all 0.2s ease;
-webkit-tap-highlight-color: transparent;
}
.ureq-send-btn:hover {
background: var(--ureq-accent-hover);
}
.ureq-send-btn:active {
transform: scale(0.95);
}
.ureq-modal-overlay {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(0, 0, 0, 0.85);
z-index: 9999;
display: none;
align-items: center;
justify-content: center;
padding: 20px;
backdrop-filter: blur(5px);
-webkit-backdrop-filter: blur(5px);
}
.ureq-modal {
background: var(--ureq-panel);
width: 100%;
max-width: 450px;
border-radius: var(--ureq-radius);
border: 1px solid var(--ureq-border);
overflow: visible;
display: flex;
flex-direction: column;
max-height: 90vh;
max-height: 90dvh;
}
.ureq-modal-head {
padding: 15px 20px;
border-bottom: 1px solid var(--ureq-border);
display: flex;
justify-content: space-between;
align-items: center;
flex-shrink: 0;
}
.ureq-modal-head h3 {
font-size: 18px;
color: #fff;
font-weight: 700;
margin: 0;
}
.ureq-modal-close {
background: none;
border: none;
color: var(--ureq-text-muted);
font-size: 28px;
cursor: pointer;
padding: 0;
width: 32px;
height: 32px;
display: flex;
align-items: center;
justify-content: center;
line-height: 1;
-webkit-tap-highlight-color: transparent;
}
.ureq-modal-close:hover {
color: var(--ureq-text-light);
}
.ureq-modal-content {
padding: 20px;
overflow-y: auto;
}
.ureq-form-group {
margin-bottom: 20px;
}
.ureq-form-group:last-of-type {
margin-bottom: 20px;
}
.ureq-form-group label {
display: block;
color: var(--ureq-text-muted);
font-size: 13px;
margin-bottom: 8px;
font-weight: 700;
}
.ureq-input {
width: 100%;
background: var(--ureq-bg);
border: 1px solid var(--ureq-border);
color: #fff;
padding: 12px;
border-radius: var(--ureq-radius);
font-size: 16px;
outline: none;
transition: border-color 0.2s ease;
font-family: inherit;
}
.ureq-input:focus {
border-color: var(--ureq-accent);
}
.ureq-input::placeholder {
color: var(--ureq-muted);
}
textarea.ureq-input {
resize: vertical;
min-height: 100px;
}
.ureq-btn-block {
width: 100%;
background: var(--ureq-accent);
color: #fff;
border: none;
height: 44px;
border-radius: var(--ureq-radius);
font-weight: 700;
font-size: 16px;
cursor: pointer;
transition: all 0.2s ease;
-webkit-tap-highlight-color: transparent;
}
.ureq-btn-block:hover:not(:disabled) {
background: var(--ureq-accent-hover);
}
.ureq-btn-block:active:not(:disabled) {
transform: scale(0.98);
}
.ureq-btn-block:disabled {
opacity: 0.6;
cursor: not-allowed;
}
.ureq-input-wrapper {
position: relative;
width: 100%;
margin-bottom: 25px;
z-index: 50;
}
.ureq-input-wrapper input {
padding-right: 40px !important;
}
.ureq-suggestions {
position: absolute;
top: 100%;
left: 0;
right: 0;
background: var(--ureq-item-bg);
border: 1px solid var(--ureq-border);
border-top: none;
border-radius: 0 0 8px 8px;
z-index: 1000;
max-height: 280px;
overflow-y: auto;
display: none;
box-shadow: 0 10px 25px rgba(0, 0, 0, 0.7);
}
.ureq-suggestions.visible {
display: block;
}
.ureq-suggestion-item {
padding: 10px 15px;
cursor: pointer;
border-bottom: 1px solid rgba(255, 255, 255, 0.05);
font-size: 14px;
color: var(--ureq-text-main);
display: flex;
align-items: center;
justify-content: space-between;
gap: 15px;
min-height: 40px;
transition: background-color 0.15s ease;
-webkit-tap-highlight-color: transparent;
}
.ureq-suggestion-item:last-child {
border-bottom: none;
}
.ureq-suggestion-item:hover {
background: var(--ureq-accent);
color: #fff;
}
.ureq-suggestion-item > span:first-child {
flex: 1;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
min-width: 0;
}
.ureq-sug-alias {
font-size: 13px;
color: #888;
margin-left: 6px;
font-weight: normal;
}
.ureq-suggestion-item:hover .ureq-sug-alias {
color: rgba(255, 255, 255, 0.7);
}
.ureq-sug-count {
font-size: 11px;
background: rgba(0, 0, 0, 0.4);
padding: 3px 8px;
border-radius: 6px;
color: #fff;
flex-shrink: 0;
font-weight: 600;
white-space: nowrap;
}
.ureq-status-icon {
position: absolute;
right: 12px;
top: 50%;
transform: translateY(-50%);
font-size: 16px;
font-weight: bold;
pointer-events: none;
display: none;
animation: fadeIn 0.2s ease;
}
.ureq-status-icon.visible {
display: block;
}
.ureq-icon-success {
color: var(--ureq-success);
}
.ureq-icon-warning {
color: var(--ureq-warning);
}
@keyframes fadeIn {
from {
opacity: 0;
transform: translateY(-50%) scale(0.8);
}
to {
opacity: 1;
transform: translateY(-50%) scale(1);
}
}
@keyframes slideUp {
from { transform: translateY(100%); }
to { transform: translateY(0); }
}
.ureq-toast {
position: fixed;
bottom: 20px;
left: 50%;
transform: translateX(-50%) translateY(100px);
background: var(--ureq-item-bg);
color: var(--ureq-text-light);
padding: 14px 28px;
border-radius: var(--ureq-radius);
font-size: 15px;
font-weight: 500;
z-index: 10001;
box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
opacity: 0;
transition: all 0.3s ease;
max-width: 90%;
text-align: center;
}
.ureq-toast.visible {
opacity: 1;
transform: translateX(-50%) translateY(0);
}
.ureq-toast.error {
background: #e53935;
color: #ffffff;
}
.ureq-toast.warning {
background: #ff9500;
color: #ffffff;
}
.ureq-toast.success {
background: #34c759;
color: #ffffff;
}
.ureq-toast.info {
background: #007aff;
color: #ffffff;
}
body.ureq-modal-open {
overflow: hidden;
touch-action: none;
}
@media (max-width: 850px) {
.ureq-app {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: var(--app-height, 100dvh);
max-height: none;
min-height: 0;
border: none;
border-radius: 0;
z-index: 9990;
background: var(--ureq-bg);
}
.ureq-sidebar {
width: 100%;
height: 100%;
}
.ureq-main {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
z-index: 20;
transform: translateX(100%);
transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
display: flex;
flex-direction: column;
will-change: transform;
}
.ureq-app.view-thread .ureq-main {
transform: translateX(0);
}
.ureq-app.view-thread .ureq-sidebar {
visibility: hidden;
}
.ureq-back-btn {
display: flex;
align-items: center;
justify-content: center;
height: 44px;
width: 44px;
margin-left: -10px;
}
.ureq-msg-row {
max-width: 85%;
}
.ureq-msg-row.own-message {
flex-direction: row-reverse;
margin-left: auto;
margin-right: 0;
}
.ureq-msg-row.own-message .ureq-msg-bubble {
border-radius: 12px 0 12px 12px;
}
.ureq-sidebar-header {
padding-top: max(15px, env(safe-area-inset-top));
}
.ureq-thread-header {
padding-top: max(10px, env(safe-area-inset-top));
}
.ureq-thread-footer {
padding-bottom: max(15px, env(safe-area-inset-bottom));
padding-left: 10px;
padding-right: 10px;
}
.ureq-list {
padding-bottom: max(10px, env(safe-area-inset-bottom));
}
.ureq-btn-new,
.ureq-tab {
height: 44px;
}
.ureq-card {
padding: 14px;
}
.ureq-modal-overlay {
align-items: flex-end;
padding: 0;
}
.ureq-modal {
max-width: 100%;
border-radius: 15px 15px 0 0;
border-bottom: none;
max-height: 85vh;
max-height: 85dvh;
animation: slideUp 0.3s ease-out;
}
.ureq-modal-content {
padding-bottom: max(20px, env(safe-area-inset-bottom));
}
.ureq-toast {
bottom: max(20px, calc(env(safe-area-inset-bottom) + 10px));
max-width: calc(100% - 40px);
}
}
@media (max-width: 850px) and (orientation: landscape) {
.ureq-modal {
max-height: 95vh;
max-height: 95dvh;
}
.ureq-thread-body {
padding: 10px;
}
}
@media (min-width: 851px) and (max-width: 1024px) {
.ureq-sidebar {
width: 320px;
}
}
@media (prefers-reduced-motion: reduce) {
.ureq-modal {
animation: none;
}
.ureq-main {
transition: none;
}
.ureq-card,
.ureq-btn-new,
.ureq-tab {
transition: none;
}
}
@media (prefers-contrast: high) {
.ureq-card {
border: 1px solid var(--ureq-text-muted);
}
.ureq-card.active {
border-color: var(--ureq-accent);
border-width: 2px;
}
}

/* Monthly limit display */
.ureq-limit-info {
padding: 12px 16px;
margin-bottom: 16px;
background: var(--ureq-item-bg);
border: 1px solid var(--ureq-border);
border-radius: 8px;
font-size: 13px;
line-height: 1.5;
color: var(--ureq-text-muted);
text-align: center;
}

.ureq-limit-info.exhausted {
background: rgba(248, 113, 113, 0.1);
border-color: var(--ureq-error);
color: var(--ureq-error);
}

.ureq-limit-info strong {
color: var(--ureq-text-light);
font-weight: 600;
}

.ureq-limit-info.exhausted strong {
color: var(--ureq-error);
}
/* Fuzzy match warning */
.ureq-fuzzy-warning {
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.15) 0%, rgba(251, 191, 36, 0.1) 100%);
    border: 1px solid var(--ureq-warning);
    border-radius: 8px;
    padding: 12px;
    margin: 10px 0;
    display: none;
}
.ureq-fuzzy-text {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
    color: var(--ureq-warning);
}
.ureq-fuzzy-text strong { font-size: 14px; }
.ureq-fuzzy-text span { font-size: 12px; opacity: 0.8; }
.ureq-fuzzy-btn {
    width: 100%;
    padding: 10px;
    background: var(--ureq-success);
    color: #000;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.2s, transform 0.1s;
}
.ureq-fuzzy-btn:hover {
    background: #3cb371;
    transform: translateY(-1px);
}

/* New status badges */
.ureq-bdg-selecting {
    background: #9c27b0;
}
.ureq-bdg-parsing {
    background: #673ab7;
}

/* Thread selection UI */
.ureq-threads-list {
    background: rgba(0, 0, 0, 0.2);
    border-radius: var(--ureq-radius);
    padding: 8px;
    max-height: 300px;
    overflow-y: auto;
}
.ureq-thread-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    margin-bottom: 6px;
    background: var(--ureq-item-bg);
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.15s ease;
    border: 1px solid transparent;
}
.ureq-thread-item:last-child {
    margin-bottom: 0;
}
.ureq-thread-item:hover {
    background: var(--ureq-item-hover);
}
.ureq-thread-item:has(input:checked) {
    border-color: var(--ureq-accent);
    background: rgba(52, 139, 200, 0.1);
}
.ureq-thread-checkbox {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    cursor: pointer;
    accent-color: var(--ureq-accent);
}
.ureq-thread-match {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 2px 6px;
    border-radius: 4px;
    flex-shrink: 0;
}
.ureq-thread-match.exact {
    background: var(--ureq-success);
    color: #000;
}
.ureq-thread-match.possible {
    background: var(--ureq-warning);
    color: #000;
}
.ureq-thread-match.weak {
    background: #666;
    color: #fff;
}
.ureq-thread-forum {
    font-size: 11px;
    background: #404040;
    color: #fff;
    padding: 2px 8px;
    border-radius: 4px;
    text-transform: uppercase;
    flex-shrink: 0;
}
.ureq-thread-link {
    flex: 1;
    color: var(--ureq-accent);
    text-decoration: none;
    font-size: 13px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.ureq-thread-link:hover {
    text-decoration: underline;
}
.ureq-threads-actions {
    display: flex;
    gap: 8px;
    margin-top: 10px;
}
.ureq-admin-btn.small {
    flex: 1;
    height: 32px;
    font-size: 12px;
    background: var(--ureq-item-bg);
}
.ureq-admin-btn.small:hover {
    background: var(--ureq-item-hover);
}

/* ==================== NEW UI SYSTEM v2 ==================== */

/* Thread Content Container */
#ureqThreadContent {
    flex: 1;
    overflow-y: auto;
    padding: 15px;
    -webkit-overflow-scrolling: touch;
}

/* ===== USER VIEW ===== */
.req-user-view {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 300px;
    text-align: center;
}

.req-status-block {
    padding: 30px 20px;
    width: 100%;
    max-width: 320px;
}

.req-status-icon {
    font-size: 48px;
    margin-bottom: 12px;
}
.req-status-icon.success { color: var(--ureq-success); }
.req-status-icon.rejected { color: var(--ureq-error); }
.req-status-icon.working {
    
}

.req-status-text {
    font-size: 20px;
    font-weight: 700;
    color: var(--ureq-text-light);
    margin-bottom: 6px;
}

.req-status-subtext {
    font-size: 14px;
    color: var(--ureq-text-muted);
    margin-bottom: 12px;
}

.req-status-result {
    font-size: 16px;
    color: var(--ureq-success);
    margin-bottom: 15px;
}

.req-status-note {
    font-size: 14px;
    color: var(--ureq-text-muted);
    font-style: italic;
    margin-bottom: 10px;
}

.req-status-info {
    font-size: 13px;
    color: var(--ureq-text-muted);
    margin-top: 8px;
}

.req-progress {
    width: 100%;
    max-width: 200px;
    height: 4px;
    background: rgba(255,255,255,0.1);
    border-radius: 2px;
    margin: 0 auto;
    overflow: hidden;
}
.req-progress-bar {
    height: 100%;
    background: var(--ureq-accent);
    transition: width 0.3s ease;
}

.req-model-info {
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid var(--ureq-border);
    color: var(--ureq-text-muted);
    font-size: 13px;
}

.ureq-card-waiting {
    font-size: 11px;
    color: var(--ureq-warning);
}

.ureq-card-progress {
    font-size: 11px;
    color: var(--ureq-accent);
}

.ureq-card-active {
    font-size: 11px;
    color: var(--ureq-text-muted);
    font-style: italic;
}

.ureq-refresh-indicator {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: var(--ureq-item-bg);
    color: var(--ureq-text-muted);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
    pointer-events: none;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.ureq-refresh-indicator.visible {
    opacity: 1;
    transform: translateY(0);
}

.ureq-refresh-dot {
    width: 6px;
    height: 6px;
    background: var(--ureq-accent);
    border-radius: 50%;
    display: inline-block;
    animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

@media (max-width: 850px) {
    .ureq-refresh-indicator {
        bottom: 80px;
        right: 10px;
        font-size: 11px;
        padding: 6px 12px;
    }
}

.req-timeline-toggle {
    margin-top: 15px;
    padding: 10px 15px;
    background: rgba(52, 139, 200, 0.1);
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 13px;
    color: var(--ureq-accent);
    font-weight: 600;
    transition: all 0.2s ease;
    user-select: none;
}

.req-timeline-toggle:hover {
    background: rgba(52, 139, 200, 0.15);
}

.req-timeline-arrow {
    font-size: 10px;
}

.req-timeline {
    margin-top: 10px;
    padding: 15px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 8px;
}

.req-timeline-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 0;
    position: relative;
}

.req-timeline-item:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 4px;
    top: 24px;
    width: 2px;
    height: calc(100% - 8px);
    background: rgba(255, 255, 255, 0.1);
}

.req-timeline-dot {
    width: 10px;
    height: 10px;
    background: var(--ureq-text-muted);
    border-radius: 50%;
    flex-shrink: 0;
}

.req-timeline-item.completed .req-timeline-dot {
    background: var(--ureq-success);
}

.req-timeline-text {
    flex: 1;
    font-size: 13px;
    color: var(--ureq-text-main);
}

.req-timeline-time {
    font-size: 12px;
    color: var(--ureq-text-muted);
}

@media (max-width: 850px) {
    .ureq-thread-info h2 {
        font-size: 16px;
    }

    .ureq-head-row {
        flex-wrap: wrap;
        align-items: flex-start;
    }

    .ureq-head-left {
        flex: 1;
        min-width: 0;
        max-width: calc(100% - 50px);
    }

    .ureq-thread-info {
        width: 100%;
    }

    .ureq-thread-source {
        flex-wrap: wrap;
    }

    .ureq-thread-source a,
    .ureq-thread-source #reqSourceLink {
        max-width: calc(100vw - 100px);
    }

    .ureq-thread-actions {
        width: 100%;
        margin-top: 10px;
        display: flex;
        gap: 8px;
        justify-content: flex-start;
        flex-wrap: wrap;
    }

    .ureq-thread-actions .ureq-btn-link {
        flex: 1;
        text-align: center;
        min-width: 100px;
    }

    .ureq-thread-actions .ureq-badge,
    .ureq-thread-actions .ureq-videos-count {
        flex-shrink: 0;
    }

    .ureq-videos-count {
        font-size: 12px;
        padding: 3px 8px;
    }
}

@media (max-width: 400px) {
    .ureq-card-title {
        font-size: 13px;
    }

    .ureq-card-date {
        font-size: 11px;
    }

    .ureq-thread-info h2 {
        font-size: 14px;
        gap: 6px;
    }

    .ureq-thread-source {
        font-size: 11px;
    }

    .ureq-thread-header {
        padding: 10px 12px;
    }

    .ureq-head-left {
        gap: 8px;
    }

    .ureq-badge {
        font-size: 10px;
        padding: 3px 8px;
    }

    .ureq-videos-count {
        font-size: 11px;
        padding: 2px 6px;
    }

    .req-btn-icon-inline {
        font-size: 12px;
        padding: 2px;
    }
}

.req-admin-view-v2 {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.req-info-header {
    background: var(--ureq-item-bg);
    border-radius: 8px;
    padding: 12px 16px;
    border-left: 3px solid var(--ureq-accent);
}

.req-info-row {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    font-size: 13px;
}

.req-info-item {
    display: flex;
    align-items: center;
    gap: 6px;
}

.req-badge-sm {
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 500;
}

.req-ctx-section {
    background: var(--ureq-item-bg);
    border-radius: 8px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.req-ctx-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--ureq-text-main);
}

.req-ctx-desc {
    font-size: 14px;
    color: var(--ureq-text-muted);
}

.req-ctx-result {
    font-size: 16px;
    font-weight: 500;
    color: var(--ureq-success);
}

.req-ctx-note {
    padding: 12px;
    background: var(--ureq-item-bg);
    border-radius: 6px;
    font-size: 14px;
    color: var(--ureq-text-muted);
}

.req-ctx-log {
    font-family: monospace;
    font-size: 12px;
    padding: 10px;
    background: var(--ureq-input-bg);
    border-radius: 4px;
    color: var(--ureq-text-muted);
    max-height: 100px;
    overflow-y: auto;
}

.req-ctx-stats {
    display: flex;
    gap: 16px;
    font-size: 13px;
    color: var(--ureq-text-muted);
}

.req-ctx-stats span {
    padding: 4px 10px;
    background: var(--ureq-item-bg);
    border-radius: 4px;
}

.req-ctx-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 8px;
}

.req-progress-bar-container {
    width: 100%;
    height: 8px;
    background: var(--ureq-item-bg);
    border-radius: 4px;
    overflow: hidden;
}

.req-progress-bar-container .req-progress-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--ureq-accent), var(--ureq-accent-hover));
    transition: width 0.3s ease;
}

.req-threads-list-compact {
    display: flex;
    flex-direction: column;
    gap: 5px;
    max-height: 400px;
    overflow-y: auto;
}

.req-thread-item-compact {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 10px;
    background: var(--ureq-item-bg);
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.2s;
}

.req-thread-item-compact:hover {
    background: var(--ureq-item-hover);
}

.req-thread-item-compact.selected {
    background: rgba(52, 139, 200, 0.1);
    border-left: 3px solid var(--ureq-accent);
}

.req-thread-item-compact input[type="checkbox"] {
    flex-shrink: 0;
}

.req-thread-item-compact a {
    flex: 1;
    font-size: 13px;
    text-decoration: none;
    color: var(--ureq-text-main);
}

.req-thread-item-compact a:hover {
    color: var(--ureq-accent);
}

.req-links-collapse {
    margin-top: 12px;
}

.req-links-list-compact {
    display: flex;
    flex-direction: column;
    gap: 6px;
    max-height: 300px;
    overflow-y: auto;
    padding: 10px;
    background: var(--ureq-item-bg);
    border-radius: 6px;
}

.req-links-list-compact a {
    font-size: 12px;
    text-decoration: none;
    color: var(--ureq-accent);
    word-break: break-all;
}

.req-links-list-compact a:hover {
    text-decoration: underline;
}

.req-advanced-gear {
    position: absolute;
    top: 12px;
    right: 12px;
}

.req-gear-toggle {
    background: none;
    border: none;
    color: var(--ureq-text-muted);
    font-size: 16px;
    cursor: pointer;
    opacity: 0.25;
    padding: 4px;
    line-height: 1;
    transition: opacity 0.2s;
}

.req-gear-toggle:hover {
    opacity: 0.7;
}

.req-gear-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background: var(--ureq-item-bg);
    border: 1px solid var(--ureq-border);
    border-radius: 8px;
    padding: 12px;
    min-width: 220px;
    z-index: 10;
    display: flex;
    flex-direction: column;
    gap: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

@media (max-width: 768px) {
    .req-info-row {
        flex-direction: column;
        gap: 8px;
    }
    
    .req-ctx-actions {
        flex-direction: column;
    }
    
    .req-ctx-actions .req-btn {
        width: 100%;
    }
}

.req-threads-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
    gap: 8px;
    flex-wrap: wrap;
}

.req-thread-stats {
    font-size: 13px;
    color: var(--ureq-text-muted);
}

.req-custom-thread {
    display: flex;
    gap: 8px;
    margin-top: 12px;
}

.req-custom-thread .req-input {
    flex: 1;
}

.req-empty-state {
    text-align: center;
    padding: 40px 20px;
    color: var(--ureq-text-muted);
}

.req-empty-state p {
    margin: 8px 0;
}

.req-empty-hint {
    font-size: 13px;
    color: var(--ureq-muted);
}

.req-links-toolbar {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 10px;
}

.req-manual-row {
    display: flex;
    gap: 10px;
}

.req-manual-row .req-select {
    flex: 1;
}

.req-tag {
    display: inline-flex;
    align-items: center;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.req-tag.exact {
    background: rgba(74, 222, 128, 0.2);
    color: #4ade80;
}

.req-tag.possible {
    background: rgba(251, 191, 36, 0.2);
    color: #fbbf24;
}

.req-tag.weak {
    background: rgba(156, 163, 175, 0.2);
    color: #9ca3af;
}

.req-tag.custom {
    background: rgba(139, 92, 246, 0.2);
    color: #8b5cf6;
}

.req-tag.forum {
    background: var(--ureq-item-bg);
    color: var(--ureq-text-muted);
}

.req-input {
    width: 100%;
    padding: 10px 12px;
    background: var(--ureq-input-bg);
    border: 1px solid var(--ureq-border);
    border-radius: 6px;
    color: var(--ureq-text-main);
    font-size: 14px;
    outline: none;
    transition: border-color 0.2s;
}

.req-input:focus {
    border-color: var(--ureq-accent);
}

.req-select {
    padding: 10px 12px;
    background: var(--ureq-input-bg);
    border: 1px solid var(--ureq-border);
    border-radius: 6px;
    color: var(--ureq-text-main);
    font-size: 14px;
    cursor: pointer;
    outline: none;
}

.req-select:focus {
    border-color: var(--ureq-accent);
}

.req-btn {
    padding: 10px 20px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    border: none;
    outline: none;
    background: var(--ureq-accent);
    color: #fff;
}

.req-btn:hover {
    background: var(--ureq-accent-hover);
}

.req-gear-dropdown .req-btn {
    padding: 7px 14px;
    font-size: 13px;
}

.req-gear-dropdown .req-select {
    font-size: 13px;
    padding: 7px 10px;
}

.req-btn.primary {
    background: var(--ureq-accent);
    color: white;
}

.req-btn.primary:hover {
    background: var(--ureq-accent-hover);
}

.req-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
}

.req-btn.secondary {
    background: var(--ureq-item-bg);
    color: var(--ureq-text-main);
    border: 1px solid var(--ureq-border);
}

.req-btn.secondary:hover {
    background: var(--ureq-item-hover);
    border-color: var(--ureq-accent);
}

.req-btn.danger {
    background: var(--ureq-error);
    color: white;
}

.req-btn.danger:hover {
    background: #dc2626;
}

.req-btn.danger-text {
    background: transparent;
    color: var(--ureq-error);
    border: 1px solid var(--ureq-error);
}

.req-btn.danger-text:hover {
    background: rgba(248, 113, 113, 0.1);
}

.req-btn.large {
    padding: 12px 24px;
    font-size: 15px;
}

.req-btn.full {
    width: 100%;
}

.req-btn-sm {
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    border: none;
    background: var(--ureq-item-bg);
    color: var(--ureq-text-main);
}

.req-btn-sm:hover {
    background: var(--ureq-item-hover);
}

.req-btn-sm.primary {
    background: var(--ureq-accent);
    color: white;
}

.req-btn-sm.primary:hover {
    background: var(--ureq-accent-hover);
}


.ureq-required {
    color: var(--ureq-error);
    font-weight: 700;
}

.ureq-hint {
    display: block;
    margin-top: 6px;
    font-size: 12px;
    color: var(--ureq-text-muted);
    font-style: italic;
}

.req-btn-icon {
    background: none;
    border: none;
    padding: 2px 6px;
    cursor: pointer;
    font-size: 14px;
    opacity: 0.6;
    transition: opacity 0.2s;
}

.req-btn-icon:hover {
    opacity: 1;
}

.req-description-section {
    background: var(--ureq-item-bg);
    border-radius: 8px;
    padding: 16px;
    margin-bottom: 16px;
}

.req-desc-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
    font-size: 14px;
}

.req-desc-content {
    padding: 12px;
    background: var(--ureq-input-bg);
    border-radius: 6px;
    font-size: 14px;
    line-height: 1.6;
    color: var(--ureq-text-main);
    word-wrap: break-word;
    white-space: pre-wrap;
}

.req-desc-content a {
    color: var(--ureq-accent);
    text-decoration: none;
}

.req-desc-content a:hover {
    text-decoration: underline;
}
