/**
 * Админ стилове за ReviewXpress
 */

/* Стилове за бутони в админ таблицата */
.rx-approve-btn {
    background-color: #46b450 !important;
    color: #fff !important;
    border: 1px solid #46b450 !important;
    padding: 4px 8px !important;
    font-size: 12px !important;
    border-radius: 3px !important;
    cursor: pointer !important;
    margin-right: 5px !important;
}

.rx-approve-btn:hover {
    background-color: #3a9a42 !important;
    border-color: #3a9a42 !important;
}

.rx-reject-btn {
    background-color: #dc3232 !important;
    color: #fff !important;
    border: 1px solid #dc3232 !important;
    padding: 4px 8px !important;
    font-size: 12px !important;
    border-radius: 3px !important;
    cursor: pointer !important;
    margin-right: 5px !important;
}

.rx-reject-btn:hover {
    background-color: #c12d2d !important;
    border-color: #c12d2d !important;
}

.rx-view-btn {
    background-color: #0073aa !important;
    color: #fff !important;
    border: 1px solid #0073aa !important;
    padding: 4px 8px !important;
    font-size: 12px !important;
    border-radius: 3px !important;
    cursor: pointer !important;
    margin-right: 5px !important;
}

.rx-view-btn:hover {
    background-color: #005a87 !important;
    border-color: #005a87 !important;
}

.rx-delete-btn {
    background-color: #dc3232 !important;
    color: #fff !important;
    border: 1px solid #dc3232 !important;
    padding: 4px 8px !important;
    font-size: 12px !important;
    border-radius: 3px !important;
    cursor: pointer !important;
}

.rx-delete-btn:hover {
    background-color: #c12d2d !important;
    border-color: #c12d2d !important;
}

/* Статистики */
.rx-admin-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 20px 0;
}

.rx-stat-box {
    background: #fff;
    border: 1px solid #ccd0d4;
    border-radius: 4px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.rx-stat-box h3 {
    margin: 0 0 10px 0;
    color: #23282d;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
}

.rx-stat-number {
    font-size: 32px;
    font-weight: bold;
    color: #0073aa;
}

.rx-stat-number.rx-pending {
    color: #ff9500;
}

.rx-stat-number.rx-approved {
    color: #46b450;
}

.rx-stat-number.rx-rejected {
    color: #dc3232;
}

/* Филтри */
.rx-admin-filters {
    background: #fff;
    border: 1px solid #ccd0d4;
    border-radius: 4px;
    padding: 20px;
    margin: 20px 0;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.rx-admin-filters form {
    display: flex;
    gap: 15px;
    align-items: center;
    flex-wrap: wrap;
}

.rx-admin-filters select,
.rx-admin-filters input[type="text"] {
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
}

.rx-admin-filters input[type="text"] {
    min-width: 200px;
}

/* Таблица */
.rx-rating-display {
    display: flex;
    align-items: center;
    gap: 8px;
}

.rx-rating-number {
    font-size: 14px;
    color: #666;
}

.rx-review-preview {
    max-width: 300px;
    color: #2c3e50;
    line-height: 1.4;
}

.rx-no-text {
    color: #999;
    font-style: italic;
}

.rx-media-count {
    font-size: 14px;
    color: #666;
}

.rx-no-media {
    color: #999;
    font-style: italic;
}

.rx-status {
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.rx-status-pending {
    background: #fff3cd;
    color: #856404;
}

.rx-status-approved {
    background: #d4edda;
    color: #155724;
}

.rx-status-rejected {
    background: #f8d7da;
    color: #721c24;
}

.rx-actions {
    display: flex;
    gap: 5px;
    flex-wrap: wrap;
}

.rx-actions .button {
    font-size: 12px;
    padding: 4px 8px;
    height: auto;
    line-height: 1.4;
}

/* Пагинация */
.rx-pagination {
    margin-top: 20px;
    text-align: center;
}

.rx-pagination .button {
    margin: 0 5px;
}

/* Модал */
.rx-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9999;
    align-items: center;
    justify-content: center;
}

.rx-modal-content {
    background: white;
    border-radius: 8px;
    max-width: 600px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.rx-modal-header {
    padding: 20px;
    border-bottom: 1px solid #e1e5e9;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.rx-modal-header h2 {
    margin: 0;
    color: #2c3e50;
    font-size: 18px;
    font-weight: 600;
}

.rx-modal-close {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #666;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.rx-modal-close:hover {
    color: #000;
}

.rx-modal-body {
    padding: 20px;
}

.rx-review-detail {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.rx-review-detail h3 {
    margin: 0 0 15px 0;
    color: #2c3e50;
    font-size: 20px;
    font-weight: 600;
}

.rx-review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #e5e7eb;
}

.rx-review-rating {
    font-size: 16px;
    color: #f59e0b;
}

.rx-review-info {
    margin-bottom: 20px;
}

.rx-review-info p {
    margin: 8px 0;
    font-size: 14px;
    color: #374151;
}

.rx-review-info strong {
    color: #1f2937;
    font-weight: 600;
}

.rx-review-media-section,
.rx-review-text-section {
    margin-bottom: 20px;
}

.rx-review-media-section h4,
.rx-review-text-section h4 {
    margin: 0 0 10px 0;
    font-size: 16px;
    font-weight: 600;
    color: #1f2937;
}

.rx-review-media {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.rx-review-media .rx-media-thumb {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 6px;
    border: 2px solid #e5e7eb;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.rx-review-media .rx-media-thumb:hover {
    transform: scale(1.1);
    border-color: #3b82f6;
}

.rx-review-media .rx-video-thumb {
    width: 60px;
    height: 60px;
    background: #f3f4f6;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    border: 2px solid #e5e7eb;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.rx-review-media .rx-video-thumb:hover {
    transform: scale(1.1);
    border-color: #3b82f6;
    background: #dbeafe;
}

.rx-review-text {
    background: #f9fafb;
    padding: 15px;
    border-radius: 6px;
    border-left: 4px solid #3b82f6;
    font-size: 14px;
    line-height: 1.5;
    color: #374151;
}

/* Статистики в настройките */
.rx-stats-container {
    margin-top: 30px;
}

.rx-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.rx-stat-card {
    background: #fff;
    border: 1px solid #ccd0d4;
    border-radius: 4px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.rx-stat-card h3 {
    margin: 0 0 10px 0;
    color: #23282d;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
}

.rx-monthly-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 10px;
}

.rx-month-stat {
    background: #f1f1f1;
    padding: 10px;
    border-radius: 4px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.rx-month {
    font-weight: 600;
    color: #2c3e50;
}

.rx-count {
    background: #0073aa;
    color: white;
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: bold;
}

/* Badge стилове */
.badge {
    display: inline-block;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.badge.ok {
    background-color: #d1fae5;
    color: #065f46;
}

.badge.pend {
    background-color: #fef3c7;
    color: #92400e;
}

.badge.den {
    background-color: #fee2e2;
    color: #991b1b;
}

/* Responsive дизайн */
@media (max-width: 768px) {
    .rx-admin-stats {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }
    
    .rx-admin-filters form {
        flex-direction: column;
        align-items: stretch;
    }
    
    .rx-admin-filters select,
    .rx-admin-filters input[type="text"] {
        width: 100%;
    }
    
    .rx-actions {
        flex-direction: column;
    }
    
    .rx-actions .button {
        width: 100%;
        text-align: center;
    }
    
    .rx-modal-content {
        width: 95%;
        margin: 20px;
    }
    
    .rx-stats-grid {
        grid-template-columns: 1fr;
    }
    
    .rx-monthly-stats {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .rx-stat-box {
        padding: 15px;
    }
    
    .rx-stat-number {
        font-size: 24px;
    }
    
    .rx-review-preview {
        max-width: 200px;
    }
    
    .rx-actions .button {
        font-size: 11px;
        padding: 3px 6px;
    }
}

/* Reviews Main Page Styles */
#rx-list{
    --bg:#f6f7f9;
    --card:#ffffff;
    --text:#111111;
    --muted:#6b7280;
    --line:#e5e7eb;
    --accent:#ffd600;
    --accent-strong:#ffc400;
    --ok:#16a34a;
    --warn:#eab308;
    --bad:#ef4444;
    --black:#0a0a0a;
    --radius:14px;
}

/* Utilities */
#rx-list .muted{ color: var(--muted); }
#rx-list .no-items{ text-align:center; padding:24px; color:var(--muted); }

/* Modal */
.rx-modal{ position: fixed; inset: 0; background: rgba(0,0,0,.45); display:none; align-items:center; justify-content:center; z-index: 9999; }
.rx-modal-content{ width: min(720px, 92vw); background:#fff; border-radius: 14px; border:1px solid var(--line); box-shadow: 0 10px 30px rgba(0,0,0,.25); overflow:hidden; }
.rx-modal-header{ display:flex; align-items:center; justify-content:space-between; gap:8px; padding:14px 16px; border-bottom:1px solid var(--line); background: linear-gradient(180deg, #fffef3 0, #ffffff 100%); }
.rx-modal-header h2{ margin:0; font-size:18px; font-weight:800; color: var(--black); }
.rx-modal-close{ appearance:none; border:0; background:transparent; font-size:24px; line-height:1; cursor:pointer; padding:6px; border-radius:8px; }
.rx-modal-close:hover{ background:#f3f4f6; }
.rx-modal-body{ padding:16px; }
.rx-review-text{ padding:8px 0 0; border-top:1px dashed var(--line); white-space: pre-wrap; }
.rx-review-media{ margin-top: 8px; }
.rx-review-media img{ max-width: 200px; max-height: 200px; border-radius: 6px; margin-right: 8px; margin-bottom: 8px; cursor: pointer; transition: transform 0.2s ease; }
.rx-review-media img:hover{ transform: scale(1.05); }
*{box-sizing:border-box}
#rx-list{
    margin:0; background:var(--bg); color:var(--text);
    font-family: system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
    line-height:1.45;
}
#rx-list .rx-wrap{ max-width: none; margin: 0; padding: 20px 20px 80px; }

#rx-list .title{ font-size: clamp(20px,3vw,28px); font-weight: 800; margin:0 0 16px; color:var(--black); }
#rx-list .subtitle{ color:var(--muted); margin: 4px 0 24px; }

/* Stat cards */
#rx-list .stats{ display:grid; grid-template-columns: repeat(12,1fr); gap: 16px; margin-bottom: 16px; }
#rx-list .stat{ grid-column: span 2; background:var(--card); border:1px solid var(--line); border-radius:var(--radius);
    padding:14px 16px; display:grid; gap:6px; box-shadow:0 2px 10px rgba(0,0,0,.04); }
#rx-list .stat small{ color:var(--muted); font-weight:600; letter-spacing:.2px; }
#rx-list .stat b{ font-size:24px; }
#rx-list .stat .trend{ font-size:12px; color:#166534; background:#dcfce7; padding:2px 8px; border-radius:999px; width:max-content }

@media (max-width: 1100px){
    #rx-list .stat{ grid-column: span 3; }
}
@media (max-width: 900px){
    #rx-list .stat{ grid-column: span 6; }
}
@media (max-width: 600px){
    #rx-list .stat{ grid-column: span 12; }
}

/* Filter bar */
#rx-list .filters{
    background: var(--card);
    border:1px solid var(--line);
    border-radius: var(--radius);
    padding: 12px;
    display:flex; gap:10px; flex-wrap:wrap; align-items:center;
    margin-bottom: 18px;
    box-shadow:0 2px 10px rgba(0,0,0,.04);
}
#rx-list .input, #rx-list .select{
    border:1px solid var(--line); background:#fff; border-radius:10px; padding:10px 12px;
    font-size:14px;
}
#rx-list .select{ padding-right: 36px; }
#rx-list .btn{
    appearance:none; border:1px solid var(--line); background:#fff; border-radius:10px;
    padding:10px 14px; font-weight:700; cursor:pointer;
}
#rx-list .btn.primary{ background: var(--accent); border-color: transparent; box-shadow: 0 6px 14px rgba(255,214,0,.35); }
#rx-list .btn.ghost{ background:transparent; }

/* Table */
#rx-list .rx-card{
    background: var(--card);
    border:1px solid var(--line);
    border-radius: var(--radius);
    overflow:hidden;
    box-shadow:0 2px 10px rgba(0,0,0,.04);
}
#rx-list table{ width:100%; border-collapse: collapse; }
#rx-list thead th{
    text-align:left; font-size:12px; letter-spacing:.3px; text-transform: uppercase;
    color:var(--muted); background: #fbfbfb; border-bottom:1px solid var(--line); padding:12px;
}
#rx-list tbody td{
    padding:12px; border-bottom:1px solid var(--line); vertical-align: middle;
    font-size:14px;
}
#rx-list tbody tr:hover{ background:#fffef3; }
#rx-list .chk{ width: 28px; }
#rx-list .badge{
    font-size:12px; padding:4px 10px; border-radius:999px; width:max-content; font-weight:700;
    border:1px solid var(--line); background:#f9fafb;
}
#rx-list .badge.ok{ color:#065f46; background:#dcfce7; border-color:#bbf7d0; }
#rx-list .badge.pend{ color:#7c2d12; background:#ffedd5; border-color:#fed7aa; }
#rx-list .badge.den{ color:#7f1d1d; background:#fee2e2; border-color:#fecaca; }

#rx-list .rating{ display:inline-flex; gap:4px; }
#rx-list .star{
    width:16px; height:16px; display:inline-block; background:var(--line); clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
}
#rx-list .star.on{ background: var(--accent); }
#rx-list .pill{
    background:#eef2ff; color:#3730a3; border:1px solid #c7d2fe; font-size:12px; padding:4px 8px; border-radius:999px;
}
#rx-list .actions{ display:flex; gap:8px; }
#rx-list .btn.xs{ padding:6px 10px; font-size:12px; border-radius:8px; }
/* Button styles - consistent with admin.css */
#rx-list .rx-approve-btn {
    background-color: #46b450 !important;
    color: #fff !important;
    border: 1px solid #46b450 !important;
    padding: 6px 10px !important;
    font-size: 12px !important;
    border-radius: 8px !important;
    cursor: pointer !important;
    margin-right: 5px !important;
}

#rx-list .rx-approve-btn:hover {
    background-color: #3a9a42 !important;
    border-color: #3a9a42 !important;
}

#rx-list .rx-reject-btn {
    background-color: #dc3232 !important;
    color: #fff !important;
    border: 1px solid #dc3232 !important;
    padding: 6px 10px !important;
    font-size: 12px !important;
    border-radius: 8px !important;
    cursor: pointer !important;
    margin-right: 5px !important;
}

#rx-list .rx-reject-btn:hover {
    background-color: #c12d2d !important;
    border-color: #c12d2d !important;
}

#rx-list .rx-view-btn {
    background-color: #0073aa !important;
    color: #fff !important;
    border: 1px solid #0073aa !important;
    padding: 6px 10px !important;
    font-size: 12px !important;
    border-radius: 8px !important;
    cursor: pointer !important;
    margin-right: 5px !important;
}

#rx-list .rx-view-btn:hover {
    background-color: #005a87 !important;
    border-color: #005a87 !important;
}

#rx-list .rx-delete-btn {
    background-color: #dc3232 !important;
    color: #fff !important;
    border: 1px solid #dc3232 !important;
    padding: 6px 10px !important;
    font-size: 12px !important;
    border-radius: 8px !important;
    cursor: pointer !important;
}

#rx-list .rx-delete-btn:hover {
    background-color: #c12d2d !important;
    border-color: #c12d2d !important;
}

/* Improve keyboard focus */
#rx-list .btn:focus{ outline: 2px solid var(--accent); outline-offset: 2px; }
#rx-list table a:focus, #rx-list .pill:focus{ outline: 2px solid var(--accent); outline-offset: 2px; }

/* Footer / pagination */
#rx-list .table-foot{ display:flex; justify-content:space-between; align-items:center; padding:12px; }
#rx-list .pagination{ display:flex; gap:6px; }
#rx-list .page{ padding:8px 12px; border:1px solid var(--line); border-radius:8px; background:#fff; }
#rx-list .page.active{ background: var(--accent); border-color:transparent; font-weight:800; }

/* Header bar */
#rx-list .headbar{ display:flex; justify-content:space-between; align-items:center; margin-bottom: 8px; }
#rx-list .headbar .left{ display:flex; align-items:center; gap:10px; }
#rx-list .badge-title{
    display:inline-flex; align-items:center; gap:8px;
    padding:6px 10px; border-radius:999px; background:#fff3a4; color:#322b00; font-weight:700; font-size:12px;
}

/* Settings Page Styles */
#rx-settings{
    --bg:#f6f7f9;
    --card:#ffffff;
    --text:#111111;
    --muted:#6b7280;
    --line:#e5e7eb;
    --accent:#ffd600;
    --accent-strong:#ffc400;
    --ok:#16a34a;
    --warn:#eab308;
    --bad:#ef4444;
    --black:#0a0a0a;
    --radius:14px;
}

#rx-settings{
    margin:0; background:var(--bg); color:var(--text);
    font-family: system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
    line-height:1.45;
}
#rx-settings .rx-wrap{ max-width: none; margin: 0; padding: 20px 20px 80px; }

#rx-settings .title{ font-size: clamp(20px,3vw,28px); font-weight: 800; margin:0 0 16px; color:var(--black); }
#rx-settings .subtitle{ color:var(--muted); margin: 4px 0 24px; }

/* Form styles */
#rx-settings .rx-form-section{
    background: var(--card);
    border:1px solid var(--line);
    border-radius: var(--radius);
    padding: 20px;
    margin-bottom: 20px;
    box-shadow:0 2px 10px rgba(0,0,0,.04);
}

/* Sections in columns */
#rx-settings .rx-sections-grid{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

@media (max-width: 768px){
    #rx-settings .rx-sections-grid{
        grid-template-columns: 1fr;
        gap: 16px;
    }
}

#rx-settings .rx-form-section h3{
    margin: 0 0 16px 0;
    font-size: 18px;
    font-weight: 700;
    color: var(--black);
    border-bottom: 1px solid var(--line);
    padding-bottom: 8px;
}

#rx-settings .rx-form-group{
    margin-bottom: 16px;
}

/* Column layout for form groups */
#rx-settings .rx-form-columns{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

#rx-settings .rx-form-column{
    display: flex;
    flex-direction: column;
    gap: 16px;
}

@media (max-width: 768px){
    #rx-settings .rx-form-columns{
        grid-template-columns: 1fr;
        gap: 16px;
    }
}

#rx-settings .rx-form-group label{
    display: block;
    margin-bottom: 6px;
    font-weight: 600;
    color: var(--text);
}

#rx-settings .rx-form-group input,
#rx-settings .rx-form-group select,
#rx-settings .rx-form-group textarea{
    width: 100%;
    padding: 10px 12px;
    border: 1px solid var(--line);
    border-radius: 8px;
    font-size: 14px;
    background: #fff;
}

#rx-settings .rx-form-group input:focus,
#rx-settings .rx-form-group select:focus,
#rx-settings .rx-form-group textarea:focus{
    outline: 2px solid var(--accent);
    outline-offset: 2px;
    border-color: var(--accent);
}

#rx-settings .rx-form-help{
    font-size: 12px;
    color: var(--muted);
    margin-top: 4px;
}

#rx-settings .rx-checkbox-group{
    display: flex;
    align-items: center;
    gap: 8px;
}

#rx-settings .rx-checkbox-group input[type="checkbox"]{
    width: auto;
    margin: 0;
}

#rx-settings .rx-radio-group{
    display: flex;
    flex-direction: column;
    gap: 8px;
}

#rx-settings .rx-radio-item{
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
}

#rx-settings .rx-radio-item input[type="radio"]{
    width: auto;
    margin: 0;
}

#rx-settings .rx-radio-item:hover{
    background: #fffef3;
    border-color: var(--accent);
}

#rx-settings .rx-radio-item input[type="radio"]:checked + label{
    font-weight: 600;
    color: var(--black);
}

#rx-settings .rx-submit-section{
    background: var(--card);
    border:1px solid var(--line);
    border-radius: var(--radius);
    padding: 20px;
    margin-top: 20px;
    box-shadow:0 2px 10px rgba(0,0,0,.04);
    text-align: right;
}

#rx-settings .btn{
    appearance:none; border:1px solid var(--line); background:#fff; border-radius:10px;
    padding:12px 20px; font-weight:700; cursor:pointer; font-size: 14px;
}

#rx-settings .btn.primary{ 
    background: var(--accent); 
    border-color: transparent; 
    box-shadow: 0 6px 14px rgba(255,214,0,.35);
    color: #161616;
}

#rx-settings .btn:hover{
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0,0,0,.15);
}

#rx-settings .btn.primary:hover{
    box-shadow: 0 8px 20px rgba(255,214,0,.4);
}

/* Side-by-side template styles */
.reviewxpress-reviews.side-by-side {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.reviewxpress-reviews.side-by-side .review-item {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 20px;
    padding: 20px;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    background: #fff;
    margin-bottom: 20px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.reviewxpress-reviews.side-by-side .review-content {
    flex: 1;
    min-width: 0;
}

.reviewxpress-reviews.side-by-side .review-media {
    flex: 0 0 200px;
    max-width: 200px;
}

.reviewxpress-reviews.side-by-side .review-media img,
.reviewxpress-reviews.side-by-side .review-media video {
    width: 100%;
    height: auto;
    border-radius: 6px;
    object-fit: cover;
}

.reviewxpress-reviews.side-by-side .review-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.reviewxpress-reviews.side-by-side .review-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.reviewxpress-reviews.side-by-side .review-author {
    font-weight: 600;
    color: #1f2937;
    margin: 0;
}

.reviewxpress-reviews.side-by-side .review-rating {
    margin-left: auto;
}

.reviewxpress-reviews.side-by-side .review-text {
    line-height: 1.6;
    color: #374151;
    margin-bottom: 15px;
}

.reviewxpress-reviews.side-by-side .review-date {
    font-size: 0.875rem;
    color: #6b7280;
}

/* Responsive design за страничния шаблон */
@media (max-width: 768px) {
    .reviewxpress-reviews.side-by-side .review-item {
        flex-direction: column;
    }
    
    .reviewxpress-reviews.side-by-side .review-media {
        flex: none;
        max-width: 100%;
    }
}