/**
 * Community Ideas - Styles
 */

/* ===================================
   Zone Overview
   =================================== */
.ci-overview {
    display: grid;
    gap: 20px;
    margin: 30px 0;
}

.ci-overview-card {
    background: white;
    border: 2px solid;
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ci-overview-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.ci-overview-card .ci-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.ci-overview-card h3 {
    margin: 0 0 10px;
    font-size: 24px;
}

.ci-overview-card .ci-count {
    margin: 0 0 20px;
    color: #666;
    font-size: 14px;
}

.ci-overview-btn {
    display: inline-block;
    padding: 12px 30px;
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.ci-overview-btn:hover {
    opacity: 0.9;
    transform: scale(1.05);
    color: white;
    text-decoration: none;
}

/* ===================================
   Zone Header
   =================================== */
.ci-zone-header {
    padding: 30px;
    border-radius: 12px;
    color: white;
    margin-bottom: 30px;
    text-align: center;
}

.ci-zone-header h2 {
    margin: 0;
    color: white;
    font-size: 32px;
}

/* ===================================
   Ideas Table
   =================================== */
.ci-ideas-table-wrap {
    overflow-x: auto;
}

.ci-ideas-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
}

.ci-ideas-table th {
    padding: 15px 20px;
    text-align: left;
    font-weight: 600;
}

.ci-ideas-table td {
    padding: 15px 20px;
    border-bottom: 1px solid #eee;
}

.ci-ideas-table tr:last-child td {
    border-bottom: none;
}

.ci-ideas-table tbody tr {
    transition: background 0.2s ease;
}

.ci-ideas-table tbody tr:hover {
    background: rgba(0,0,0,0.02);
}

.ci-view-btn {
    display: inline-block;
    padding: 8px 20px;
    color: white;
    text-decoration: none;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.ci-view-btn:hover {
    opacity: 0.85;
    transform: translateX(3px);
    color: white;
    text-decoration: none;
}

/* ===================================
   Idea View - Header
   =================================== */
.ci-idea-header {
    padding: 30px;
    border-radius: 12px;
    color: white;
    margin-bottom: 30px;
}

.ci-idea-header h1 {
    margin: 5px 0 0;
    color: white;
    font-size: 28px;
}

/* ===================================
   Idea View - Content
   =================================== */
.ci-idea-content {
    background: white;
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
}

.ci-response-item {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.ci-response-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

/* ===================================
   Reactions Section
   =================================== */
.ci-reactions-section {
    background: white;
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
}

.ci-reactions-container {
    display: flex;
    gap: 20px;
    align-items: center;
    flex-wrap: wrap;
}

.ci-react-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 25px;
    border: 2px solid;
    border-radius: 25px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
    background: transparent;
}

.ci-react-like {
    border-color: #27ae60;
    color: #27ae60;
}

.ci-react-like:hover,
.ci-react-like.active {
    background: #27ae60;
    color: white;
}

.ci-react-dislike {
    border-color: #e74c3c;
    color: #e74c3c;
}

.ci-react-dislike:hover,
.ci-react-dislike.active {
    background: #e74c3c;
    color: white;
}

.ci-react-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.ci-react-btn.loading {
    position: relative;
    pointer-events: none;
}

.ci-react-btn.loading::after {
    content: '';
    position: absolute;
    width: 16px;
    height: 16px;
    border: 2px solid currentColor;
    border-top-color: transparent;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    right: 10px;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* ===================================
   Comments Section
   =================================== */
.ci-comments-section {
    background: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
}

.ci-add-comment textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 15px;
    resize: vertical;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.ci-add-comment textarea:focus {
    outline: none;
    border-color: #667eea;
}

#ci-submit-comment {
    padding: 12px 30px;
    color: white;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-size: 15px;
    font-weight: 600;
    transition: all 0.3s ease;
}

#ci-submit-comment:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

#ci-submit-comment:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

/* ===================================
   Comment Item
   =================================== */
.ci-comment {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
    animation: fadeIn 0.3s ease;
}

.ci-comment:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.ci-comment.removing {
    animation: fadeOut 0.3s ease forwards;
}

@keyframes fadeOut {
    from {
        opacity: 1;
        transform: translateY(0);
    }
    to {
        opacity: 0;
        transform: translateY(-10px);
    }
}

.ci-delete-comment {
    background: none;
    border: none;
    color: #e74c3c;
    cursor: pointer;
    font-size: 13px;
    padding: 0;
    transition: opacity 0.2s ease;
}

.ci-delete-comment:hover {
    opacity: 0.7;
}

.ci-no-comments {
    text-align: center;
    padding: 30px;
    color: #6c757d;
}

/* ===================================
   Error & Empty States
   =================================== */
.ci-error {
    background: #f8d7da;
    border: 1px solid #f5c6cb;
    padding: 15px 20px;
    border-radius: 8px;
    color: #721c24;
}

.ci-no-ideas {
    background: #f8f9fa;
    padding: 40px;
    text-align: center;
    border-radius: 12px;
    border: 2px dashed #dee2e6;
}

/* ===================================
   Toast Notifications
   =================================== */
.ci-toast {
    position: fixed;
    bottom: 30px;
    right: 30px;
    padding: 15px 25px;
    border-radius: 8px;
    color: white;
    font-weight: 500;
    z-index: 10000;
    animation: slideIn 0.3s ease;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
}

.ci-toast.success {
    background: #27ae60;
}

.ci-toast.error {
    background: #e74c3c;
}

.ci-toast.hiding {
    animation: slideOut 0.3s ease forwards;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideOut {
    from {
        opacity: 1;
        transform: translateX(0);
    }
    to {
        opacity: 0;
        transform: translateX(50px);
    }
}

/* ===================================
   No Ideas State
   =================================== */
.ci-no-ideas {
    background: #f8f9fa;
    padding: 40px;
    text-align: center;
    border-radius: 12px;
    border: 2px dashed #dee2e6;
}

.ci-no-ideas .ci-icon {
    font-size: 48px;
    display: block;
    margin-bottom: 15px;
}

.ci-no-ideas h3 {
    margin: 0 0 10px;
    color: #495057;
}

.ci-no-ideas p {
    margin: 0;
    color: #6c757d;
}

/* ===================================
   Zone Header Styles
   =================================== */
.ci-zone-header .ci-subtitle {
    margin: 10px 0 0;
    opacity: 0.9;
}

.ci-zone-header .ci-icon {
    font-size: 48px;
}

/* ===================================
   Table Styles
   =================================== */
.ci-ideas-table th {
    border-bottom: 2px solid currentColor;
}

.ci-table-row {
    border-bottom: 1px solid #eee;
    transition: background 0.2s ease;
}

.ci-table-row:hover {
    background: rgba(0,0,0,0.02);
}

.ci-cell-muted {
    color: #6c757d;
}

.ci-user-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.ci-user-info strong {
    color: #212529;
}

.ci-avatar {
    border-radius: 50%;
}

.text-center {
    text-align: center;
}

/* ===================================
   Reactions Inline
   =================================== */
.ci-reactions-inline {
    display: inline-flex;
    align-items: center;
    gap: 15px;
}

.ci-reaction-like {
    color: #27ae60;
}

.ci-reaction-dislike {
    color: #e74c3c;
}

.ci-reaction-comment {
    color: #3498db;
}

/* ===================================
   Pagination
   =================================== */
.ci-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.ci-pagination-btn {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 10px 20px;
    color: white;
    text-decoration: none;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.ci-pagination-btn:hover {
    opacity: 0.9;
    color: white;
    text-decoration: none;
}

.ci-pagination-btn.disabled {
    background: #e9ecef;
    color: #6c757d;
    cursor: not-allowed;
}

.ci-pagination-numbers {
    display: flex;
    gap: 5px;
    align-items: center;
}

.ci-page-link {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: #f8f9fa;
    color: #212529;
    text-decoration: none;
    border-radius: 50%;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.ci-page-link:hover {
    background: rgba(0,0,0,0.1);
    color: #212529;
    text-decoration: none;
}

.ci-page-link.active {
    color: white;
    font-weight: 600;
}

.ci-page-ellipsis {
    padding: 0 5px;
    color: #6c757d;
}

.ci-pagination-info {
    text-align: center;
    color: #6c757d;
    margin-top: 15px;
    font-size: 14px;
}

/* ===================================
   Back Link
   =================================== */
.ci-back-link {
    text-align: center;
    margin-top: 30px;
    margin-bottom: 30px;
}

.ci-back-btn {
    display: inline-block;
    padding: 12px 30px;
    background: #6c757d;
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 500;
}

.ci-back-btn:hover {
    background: #5a6268;
    color: white;
    text-decoration: none;
}

.ci-back-btn-colored {
    display: inline-block;
    padding: 12px 30px;
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 500;
}

.ci-back-btn-colored:hover {
    opacity: 0.9;
    color: white;
    text-decoration: none;
}

/* ===================================
   Idea View Styles
   =================================== */
.ci-idea-header-inner {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.ci-idea-avatar {
    flex-shrink: 0;
}

.ci-avatar-bordered {
    border-radius: 50%;
    border: 3px solid rgba(255,255,255,0.3);
}

.ci-idea-meta {
    flex-grow: 1;
}

.ci-idea-meta h1 {
    margin: 5px 0 0;
    color: white;
    font-size: 28px;
}

.ci-idea-date {
    margin: 5px 0 0;
    opacity: 0.8;
}

.ci-section-title {
    margin: 0 0 20px;
    border-bottom: 2px solid;
    padding-bottom: 10px;
}

.ci-section-heading {
    margin: 0 0 20px;
    color: #212529;
}

.ci-response-label {
    font-weight: 600;
    margin-bottom: 5px;
    font-size: 14px;
}

.ci-response-value {
    color: #212529;
    font-size: 16px;
    line-height: 1.6;
}

.ci-no-data {
    color: #6c757d;
    font-style: italic;
}

/* ===================================
   Reactions Section Styles
   =================================== */
.ci-reactions-own {
    color: #6c757d;
    margin: 0;
}

.ci-reactions-own small {
    color: #999;
    font-style: italic;
}

.ci-login-prompt {
    color: #6c757d;
    margin: 0;
}

/* ===================================
   Comments Section Styles
   =================================== */
.ci-add-comment {
    margin-bottom: 30px;
}

.ci-comment-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.ci-comment-textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 15px;
    resize: vertical;
    font-family: inherit;
}

.ci-comment-submit-wrap {
    text-align: right;
}

.ci-submit-btn {
    padding: 12px 30px;
    color: white;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-size: 15px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.ci-submit-btn:hover {
    opacity: 0.9;
}

.ci-login-box {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    margin-bottom: 30px;
}

.ci-login-box p {
    margin: 0;
    color: #6c757d;
}

.ci-no-comments {
    text-align: center;
    padding: 30px;
    color: #6c757d;
}

.ci-no-comments .ci-icon {
    font-size: 32px;
    display: block;
    margin-bottom: 10px;
}

.ci-no-comments p {
    margin: 0;
}

.ci-comment-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 5px;
}

.ci-comment-header strong {
    color: #212529;
}

.ci-comment-time {
    color: #6c757d;
    font-size: 13px;
}

.ci-comment-text {
    color: #495057;
    line-height: 1.6;
}

.ci-comment-actions {
    margin-top: 10px;
}

.ci-delete-comment {
    background: none;
    border: none;
    color: #e74c3c;
    cursor: pointer;
    font-size: 13px;
    padding: 0;
}

.ci-delete-comment:hover {
    text-decoration: underline;
}

/* ===================================
   Error Message
   =================================== */
.ci-error {
    background: #f8d7da;
    border: 1px solid #f5c6cb;
    padding: 15px;
    border-radius: 8px;
    color: #721c24;
    text-align: center;
}

/* ===================================
   Story Header (Titlul Povestii)
   =================================== */
.ci-story-header {
    padding: 30px;
    border-radius: 12px;
    color: white;
    margin-bottom: 30px;
}

.ci-story-header-inner {
    display: flex;
    align-items: center;
    gap: 20px;
}

.ci-story-avatar {
    flex-shrink: 0;
}

.ci-story-avatar img {
    width: 80px;
    height: 80px;
    border-radius: 8px;
    border: 3px solid rgba(255,255,255,0.3);
    object-fit: cover;
}

.ci-story-meta {
    flex: 1;
}

.ci-story-title {
    margin: 0 0 8px;
    color: white;
    font-size: 28px;
    font-weight: 700;
    line-height: 1.2;
}

.ci-story-author {
    margin: 0 0 5px;
    color: rgba(255,255,255,0.9);
    font-size: 16px;
}

.ci-story-date {
    margin: 0;
    color: rgba(255,255,255,0.75);
    font-size: 14px;
}

/* ===================================
   Project Info Section
   =================================== */
.ci-project-info {
    background: white;
    border-radius: 12px;
    padding: 25px 30px;
    margin-bottom: 30px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
}

.ci-project-info-title {
    margin: 0 0 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #f0f0f0;
    font-size: 18px;
    color: #333;
}

.ci-project-info-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 20px;
}

.ci-project-info-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.ci-project-info-label {
    font-size: 12px;
    font-weight: 600;
    color: black;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.ci-project-info-value {
    font-size: 16px;
    color: #333;
    font-weight: 500;
}

.ci-project-description {
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.ci-project-description h4 {
    margin: 0 0 10px;
    font-size: 14px;
    font-weight: 600;
    color: #333;
}

.ci-project-description p {
    margin: 0;
    font-size: 15px;
    color: #555;
    line-height: 1.6;
    font-style: italic;
}

/* ===================================
   Category Section with Dropdown
   =================================== */
.ci-category-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
}

.ci-category-header {
    display: flex;
    align-items: center;
    gap: 15px;
}

.ci-category-icon {
    width: 60px;
    height: 60px;
    flex-shrink: 0;
}

.ci-category-icon svg {
    width: 100%;
    height: 100%;
}

.ci-category-name {
    margin: 0;
    font-size: 28px;
    font-weight: 700;
}

.ci-category-dropdown-wrap {
    position: relative;
}

.ci-category-dropdown {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    padding: 12px 45px 12px 20px;
    font-size: 16px;
    font-weight: 500;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    background: white url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23666' d='M6 8L1 3h10z'/%3E%3C/svg%3E") no-repeat right 15px center;
    cursor: pointer;
    min-width: 200px;
    transition: all 0.2s ease;
}

.ci-category-dropdown:hover {
    border-color: #ccc;
}

.ci-category-dropdown:focus {
    outline: none;
    border-color: #007bff;
    box-shadow: 0 0 0 3px rgba(0,123,255,0.1);
}

.ci-category-dropdown option:disabled {
    color: #aaa;
    font-style: italic;
}

/* Loading state */
.ci-idea-view.ci-loading {
    opacity: 0.6;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.ci-idea-view.ci-loading::before {
    content: '';
    position: fixed;
    top: 50%;
    left: 50%;
    width: 40px;
    height: 40px;
    margin: -20px 0 0 -20px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid #3498db;
    border-radius: 50%;
    animation: ci-spin 1s linear infinite;
    z-index: 9999;
}

@keyframes ci-spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* ===================================
   Responsive
   =================================== */
@media (max-width: 992px) {
    .ci-project-info-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .ci-overview {
        grid-template-columns: 1fr !important;
    }
    
    .ci-zone-container {
        margin: 0 -15px;
    }
    
    .ci-zone-header {
        padding: 20px 15px;
        margin-bottom: 20px;
    }
    
    .ci-zone-header h2 {
        font-size: 24px;
    }
    
    .ci-zone-header .ci-subtitle {
        font-size: 14px;
    }
    
    /* Hide table header and convert table to cards */
    .ci-ideas-table-wrap {
        overflow-x: visible;
    }
    
    .ci-ideas-table thead {
        display: none;
    }
    
    .ci-ideas-table,
    .ci-ideas-table tr,
    .ci-ideas-table td {
        display: block;
        width: 100%;
    }
    
    .ci-ideas-table {
        box-shadow: none;
        background: transparent;
    }
    
    .ci-ideas-table tbody tr {
        background: white;
        border-radius: 12px;
        padding: 15px;
        margin-bottom: 15px;
        box-shadow: 0 2px 8px rgba(0,0,0,0.1);
        border: none;
    }

    .ci-ideas-table tbody {
        display: flex;
    }

    tr.ci-table-row td {
        display: flex;
    }

    .ci-ideas-table td:first-child {
        display: none !important;
    }
    
    .ci-ideas-table tbody tr:hover {
        box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    }
    
    .ci-ideas-table td {
        padding: 8px 0;
        border: none;
        text-align: left !important;
    }
    
    .ci-ideas-table td:first-child {
        display: none;
    }
    
    .ci-user-info {
        padding-bottom: 12px;
        border-bottom: 1px solid #eee;
        margin-bottom: 12px;
    }
    
    .ci-user-info img {
        width: 50px;
        height: 50px;
    }
    
    .ci-ideas-table td:nth-child(3) {
        display: flex;
        align-items: center;
        gap: 8px;
        color: #6c757d;
        font-size: 14px;
        padding-bottom: 12px;
        border-bottom: 1px solid #eee;
        margin-bottom: 12px;
    }
    
    .ci-ideas-table td:nth-child(3)::before {
        content: '📅';
        font-size: 16px;
    }
    
    .ci-ideas-table td:nth-child(4) {
        padding-bottom: 12px;
        margin-bottom: 12px;
    }
    
    .ci-reactions-inline {
        flex-wrap: wrap;
        gap: 10px;
        font-size: 14px;
    }
    
    .ci-ideas-table td:nth-child(5) {
        padding-top: 12px;
        border-top: 1px solid #eee;
    }
    
    .ci-view-btn {
        display: block;
        text-align: center;
        padding: 12px 20px;
        font-size: 15px;
    }
    
    .ci-idea-header {
        padding: 20px;
    }
    
    .ci-idea-header h1 {
        font-size: 22px;
    }
    
    .ci-reactions-container {
        flex-direction: column;
        align-items: stretch;
    }
    
    .ci-react-btn {
        justify-content: center;
    }
    
    .ci-toast {
        left: 15px;
        right: 15px;
        bottom: 15px;
    }
    
    .ci-story-header-inner {
        flex-direction: column;
        text-align: center;
    }
    
    .ci-story-title {
        font-size: 22px;
    }
    
    .ci-project-info-grid {
        grid-template-columns: 1fr;
    }
    
    .ci-category-section {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .ci-category-header {
        flex-direction: column;
    }
    
    .ci-category-dropdown {
        width: 100%;
    }
}

@media screen and (max-width: 782px) {
    .ci-zone-container {
        margin: 0;
        padding: 0 10px;
    }
    
    .ci-zone-header {
        padding: 20px 15px;
        margin-bottom: 15px;
        border-radius: 8px;
    }
    
    .ci-zone-header .elementor-icon {
        font-size: 36px;
    }
    
    .ci-zone-header h2 {
        font-size: 22px;
        margin: 8px 0;
    }
    
    .ci-zone-header .ci-subtitle {
        font-size: 13px;
        margin-top: 5px;
    }
    
    /* Card layout for mobile */
    .ci-ideas-table-wrap {
        padding: 0;
        overflow: visible;
    }
    
    .ci-ideas-table thead {
        display: none;
    }
    
    .ci-ideas-table,
    .ci-ideas-table tr,
    .ci-ideas-table td {
        display: block;
        width: 100%;
    }
    
    .ci-ideas-table {
        box-shadow: none;
        background: transparent;
        border-radius: 0;
    }
    
    .ci-ideas-table tbody tr {
        background: white;
        border-radius: 12px;
        padding: 15px;
        margin-bottom: 12px;
        box-shadow: 0 2px 10px rgba(0,0,0,0.08);
        border: 1px solid #f0f0f0;
    }
    
    .ci-ideas-table td {
        padding: 0;
        border: none;
        text-align: left !important;
    }
    
    /* Hide counter column */
    .ci-ideas-table td:nth-child(1) {
        display: none;
    }
    
    /* User info styling */
    .ci-ideas-table td:nth-child(2) {
        padding-bottom: 12px;
        margin-bottom: 12px;
        border-bottom: 1px solid #f0f0f0;
    }
    
    .ci-user-info {
        gap: 12px;
    }
    
    .ci-user-info img {
        width: 45px;
        height: 45px;
    }
    
    .ci-user-info strong {
        font-size: 15px;
    }
    
    /* Date styling */
    .ci-ideas-table td:nth-child(3) {
        display: flex;
        align-items: center;
        gap: 8px;
        color: #6c757d;
        font-size: 13px;
        padding: 8px 0;
        margin-bottom: 12px;
        border-bottom: 1px solid #f0f0f0;
    }
    
    .ci-ideas-table td:nth-child(3)::before {
        content: '📅';
        font-size: 16px;
    }
    
    /* Reactions styling */
    .ci-ideas-table td:nth-child(4) {
        padding: 8px 0 12px;
        margin-bottom: 12px;
        border-bottom: 1px solid #f0f0f0;
    }
    
    .ci-reactions-inline {
        display: flex;
        flex-wrap: wrap;
        gap: 12px;
        font-size: 14px;
    }
    
    .ci-reactions-inline span {
        display: inline-flex;
        align-items: center;
        gap: 4px;
    }
    
    /* Action button */
    .ci-ideas-table td:nth-child(5) {
        padding-top: 12px;
    }
    
    .ci-view-btn {
        display: block;
        width: 100%;
        text-align: center;
        padding: 12px 20px;
        font-size: 15px;
        border-radius: 8px;
    }
    
    /* Pagination */
    .ci-pagination {
        flex-wrap: wrap;
        gap: 8px;
        margin-top: 20px;
    }
    
    .ci-pagination-btn {
        padding: 10px 16px;
        font-size: 13px;
    }
    
    .ci-page-link {
        width: 36px;
        height: 36px;
        font-size: 13px;
    }
    
    .ci-category-name {
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .ci-zone-header h2 {
        font-size: 20px;
    }
    
    .ci-zone-header .ci-subtitle {
        font-size: 12px;
    }
    
    .ci-ideas-table tbody tr {
        padding: 12px;
    }
    
    .ci-category-name {
        font-size: 18px;
    }
}
