
/* ============================================

   Coliseum - Community Petitions Platform

   Uses shell.css variables for theming

   ============================================ */



.coliseum-container {

    min-height: calc(100vh - 120px);

    background: var(--bg-primary);

}



/* ============================================

   Common Components

   ============================================ */

.col-btn {

    display: inline-flex;

    align-items: center;

    gap: 8px;

    padding: 10px 18px;

    border-radius: 8px;

    font-size: 14px;

    font-weight: 600;

    cursor: pointer;

    transition: all 0.2s;

    border: none;

    text-decoration: none;

}



.col-btn-primary { background: linear-gradient(135deg, #7c3aed, #8b5cf6); color: white; }

.col-btn-outline { background: transparent; border: 1px solid var(--border-color); color: var(--text-primary); }

.col-btn-sm { padding: 6px 12px; font-size: 12px; }

.col-btn-lg { padding: 14px 24px; font-size: 16px; }

.col-btn.full { width: 100%; justify-content: center; }



.col-btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(139, 92, 246, 0.4); }



.col-back-btn {

    width: 40px;

    height: 40px;

    background: rgba(255,255,255,0.1);

    border: none;

    border-radius: 10px;

    color: white;

    display: flex;

    align-items: center;

    justify-content: center;

    text-decoration: none;

}



.col-icon-btn {

    width: 32px;

    height: 32px;

    background: var(--bg-tertiary, rgba(0,0,0,0.1));

    border: 1px solid var(--border-color);

    border-radius: 6px;

    color: var(--text-secondary);

    cursor: pointer;

}



.col-card {

    background: var(--bg-secondary);

    border: 1px solid var(--border-color);

    border-radius: 16px;

    overflow: hidden;

}



.col-card-header {

    padding: 16px 20px;

    border-bottom: 1px solid var(--border-color);

    display: flex;

    justify-content: space-between;

    align-items: center;

}



.col-card-header h3 {

    font-size: 16px;

    font-weight: 600;

    color: var(--text-primary);

    margin: 0;

    display: flex;

    align-items: center;

    gap: 10px;

}



.col-card-header h3 i { color: #8b5cf6; }



.col-link {

    font-size: 13px;

    color: #8b5cf6;

    text-decoration: none;

}



.col-input {

    width: 100%;

    padding: 12px 16px;

    background: var(--bg-tertiary, rgba(0,0,0,0.1));

    border: 1px solid var(--border-color);

    border-radius: 10px;

    color: var(--text-primary);

    font-size: 14px;

    margin-bottom: 12px;

}



.col-input-lg {

    font-size: 18px;

    padding: 16px 20px;

}



.col-textarea {

    width: 100%;

    min-height: 200px;

    padding: 16px;

    background: var(--bg-tertiary, rgba(0,0,0,0.1));

    border: 1px solid var(--border-color);

    border-radius: 10px;

    color: var(--text-primary);

    font-size: 15px;

    resize: vertical;

}



.col-select {

    width: 100%;

    padding: 12px 16px;

    background: var(--bg-tertiary, rgba(0,0,0,0.1));

    border: 1px solid var(--border-color);

    border-radius: 10px;

    color: var(--text-primary);

    font-size: 14px;

}



/* ============================================

   Landing Page

   ============================================ */

.col-hero {

    background: linear-gradient(135deg, #4c1d95 0%, #7c3aed 50%, #8b5cf6 100%);

    padding: 60px 24px;

    text-align: center;

    color: white;

}



.col-hero-logo {

    width: 80px;

    height: 80px;

    background: rgba(255,255,255,0.2);

    border-radius: 20px;

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 40px;

    margin: 0 auto 20px;

}



.col-hero h1 {

    font-size: 42px;

    font-weight: 800;

    margin: 0 0 12px;

}



.col-hero p {

    font-size: 18px;

    opacity: 0.9;

    margin: 0 0 24px;

    max-width: 500px;

    margin-left: auto;

    margin-right: auto;

}



.col-hero-actions {

    display: flex;

    gap: 12px;

    justify-content: center;

}



.col-hero .col-btn-outline {

    border-color: rgba(255,255,255,0.3);

    color: white;

}



/* Stats Bar */

.col-stats-bar {

    display: flex;

    justify-content: center;

    gap: 48px;

    padding: 24px;

    background: var(--bg-secondary);

    border-bottom: 1px solid var(--border-color);

}



.col-stat-item {

    text-align: center;

}



.col-stat-value {

    font-size: 28px;

    font-weight: 800;

    color: var(--text-primary);

    display: block;

}



.col-stat-label {

    font-size: 13px;

    color: var(--text-muted);

}



/* Main Content */

.col-main-content {

    max-width: 1200px;

    margin: 0 auto;

    padding: 32px 24px;

}



.col-section {

    margin-bottom: 40px;

}



.col-section-header {

    display: flex;

    justify-content: space-between;

    align-items: center;

    margin-bottom: 20px;

}



.col-section-header h2 {

    font-size: 20px;

    font-weight: 700;

    color: var(--text-primary);

    margin: 0;

    display: flex;

    align-items: center;

    gap: 10px;

}



.col-section-header h2 i { color: #8b5cf6; }



/* Petitions Grid */

.col-petitions-grid {

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 20px;

}



.col-petition-card {

    background: var(--bg-secondary);

    border: 1px solid var(--border-color);

    border-radius: 16px;

    padding: 20px;

    transition: all 0.2s;

}



.col-petition-card:hover {

    transform: translateY(-4px);

    box-shadow: 0 12px 32px rgba(0,0,0,0.15);

}



.col-petition-category {

    display: inline-block;

    font-size: 11px;

    font-weight: 700;

    padding: 4px 10px;

    border-radius: 4px;

    background: rgba(139, 92, 246, 0.2);

    color: #8b5cf6;

    margin-bottom: 10px;

}



.col-petition-card h3 {

    font-size: 17px;

    font-weight: 700;

    color: var(--text-primary);

    margin: 0 0 8px;

    line-height: 1.3;

}



.col-petition-card p {

    font-size: 14px;

    color: var(--text-secondary);

    margin: 0 0 16px;

    line-height: 1.4;

}



/* Progress Bar */

.col-petition-progress {

    margin-bottom: 12px;

}



.col-progress-bar {

    height: 8px;

    background: var(--bg-tertiary, rgba(0,0,0,0.2));

    border-radius: 4px;

    overflow: hidden;

    margin-bottom: 8px;

}



.col-progress-bar.lg {

    height: 12px;

    margin-bottom: 12px;

}



.col-progress-fill {

    height: 100%;

    background: linear-gradient(90deg, #7c3aed, #8b5cf6);

    border-radius: 4px;

}



.col-progress-stats {

    display: flex;

    justify-content: space-between;

    font-size: 13px;

    color: var(--text-secondary);

}



.col-progress-stats strong {

    color: var(--text-primary);

}



.col-petition-meta {

    display: flex;

    justify-content: space-between;

    font-size: 12px;

    color: var(--text-muted);

}



.col-petition-meta i { margin-right: 4px; }



/* Victories */

.col-victories-list {

    display: flex;

    flex-direction: column;

    gap: 12px;

}



.col-victory-item {

    display: flex;

    align-items: center;

    gap: 16px;

    padding: 16px 20px;

    background: var(--bg-secondary);

    border: 1px solid var(--border-color);

    border-radius: 12px;

    border-left: 4px solid #10b981;

}



.col-victory-badge {

    width: 40px;

    height: 40px;

    background: rgba(16, 185, 129, 0.2);

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    color: #10b981;

    font-size: 16px;

}



.col-victory-info h4 {

    font-size: 15px;

    font-weight: 600;

    color: var(--text-primary);

    margin: 0;

}



.col-victory-info p {

    font-size: 13px;

    color: var(--text-muted);

    margin: 2px 0 0;

}



/* ============================================

   Category Page

   ============================================ */

.col-page-header {

    display: flex;

    align-items: center;

    gap: 20px;

    padding: 16px 24px;

    background: linear-gradient(135deg, #4c1d95, #7c3aed);

    color: white;

}



.col-page-header.admin { background: linear-gradient(135deg, #1e3a5f, #3b82f6); }

.col-page-header.user { background: linear-gradient(135deg, #047857, #10b981); }

.col-page-header.results { background: linear-gradient(135deg, #b45309, #f59e0b); }



.col-page-title h1 {

    font-size: 20px;

    font-weight: 700;

    margin: 0;

    color: white;

    display: flex;

    align-items: center;

    gap: 10px;

}



.col-page-title p {

    font-size: 13px;

    opacity: 0.9;

    margin: 2px 0 0;

}



.col-search-box {

    margin-left: auto;

    display: flex;

    align-items: center;

    gap: 10px;

    padding: 10px 16px;

    background: rgba(255,255,255,0.1);

    border-radius: 24px;

    width: 280px;

}



.col-search-box i { color: rgba(255,255,255,0.7); }



.col-search-box input {

    background: none;

    border: none;

    color: white;

    font-size: 14px;

    width: 100%;

    outline: none;

}



.col-search-box input::placeholder { color: rgba(255,255,255,0.6); }



/* Category Layout */

.col-category-layout {

    display: grid;

    grid-template-columns: 260px 1fr;

    min-height: calc(100vh - 140px);

}



.col-category-sidebar {

    background: var(--bg-secondary);

    border-right: 1px solid var(--border-color);

    padding: 20px;

}



.col-category-sidebar h3 {

    font-size: 12px;

    font-weight: 700;

    color: var(--text-muted);

    text-transform: uppercase;

    margin: 0 0 12px;

}



.col-category-list {

    display: flex;

    flex-direction: column;

    gap: 4px;

}



.col-category-item {

    display: flex;

    align-items: center;

    gap: 12px;

    padding: 12px 14px;

    border-radius: 10px;

    text-decoration: none;

    color: var(--text-secondary);

    font-size: 14px;

}



.col-category-item:hover { background: var(--bg-tertiary, rgba(0,0,0,0.1)); }

.col-category-item.active { background: rgba(139, 92, 246, 0.1); color: #8b5cf6; }



.col-category-item i { width: 20px; }



.col-count {

    margin-left: auto;

    font-size: 12px;

    color: var(--text-muted);

}



.col-category-main {

    padding: 20px;

}



/* Filter Bar */

.col-filter-bar {

    display: flex;

    gap: 8px;

    margin-bottom: 20px;

}



.col-filter-btn {

    padding: 8px 16px;

    background: var(--bg-secondary);

    border: 1px solid var(--border-color);

    border-radius: 20px;

    color: var(--text-secondary);

    font-size: 13px;

    cursor: pointer;

}



.col-filter-btn.active {

    background: #8b5cf6;

    border-color: #8b5cf6;

    color: white;

}



/* Petition List */

.col-petitions-list {

    display: flex;

    flex-direction: column;

    gap: 12px;

}



.col-petition-row {

    display: grid;

    grid-template-columns: 1fr 180px 120px;

    gap: 20px;

    align-items: center;

    padding: 20px;

    background: var(--bg-secondary);

    border: 1px solid var(--border-color);

    border-radius: 12px;

    text-decoration: none;

    transition: all 0.2s;

}



.col-petition-row:hover {

    border-color: #8b5cf6;

}



.col-petition-cat-badge {

    display: inline-block;

    font-size: 10px;

    font-weight: 700;

    padding: 3px 8px;

    border-radius: 4px;

    background: rgba(139, 92, 246, 0.2);

    color: #8b5cf6;

    margin-bottom: 6px;

}



.col-petition-cat-badge.env {

    background: rgba(16, 185, 129, 0.2);

    color: #10b981;

}



.col-petition-row-main h3 {

    font-size: 16px;

    font-weight: 600;

    color: var(--text-primary);

    margin: 0 0 4px;

}



.col-petition-row-main p {

    font-size: 13px;

    color: var(--text-muted);

    margin: 0;

}



.col-mini-progress {

    height: 6px;

    background: var(--bg-tertiary, rgba(0,0,0,0.2));

    border-radius: 3px;

    overflow: hidden;

    margin-bottom: 6px;

}



.col-mini-progress.victory .col-mini-fill {

    background: #10b981;

}



.col-mini-fill {

    height: 100%;

    background: linear-gradient(90deg, #7c3aed, #8b5cf6);

    border-radius: 3px;

}



.col-petition-row-progress {

    text-align: center;

}



.col-petition-row-progress span {

    font-size: 12px;

    color: var(--text-muted);

}



.col-petition-row-meta {

    display: flex;

    align-items: center;

    justify-content: flex-end;

    gap: 12px;

    font-size: 13px;

    color: var(--text-muted);

}



/* ============================================

   Petition Detail Page

   ============================================ */

.col-petition-header {

    display: flex;

    align-items: center;

    gap: 16px;

    padding: 16px 24px;

    background: linear-gradient(135deg, #4c1d95, #7c3aed);

    color: white;

}



.col-petition-cat-tag {

    background: rgba(255,255,255,0.2);

    padding: 6px 14px;

    border-radius: 20px;

    font-size: 12px;

    font-weight: 600;

}



.col-petition-layout {

    display: grid;

    grid-template-columns: 1fr 380px;

    gap: 24px;

    padding: 24px;

    max-width: 1200px;

    margin: 0 auto;

}



.col-petition-article {

    background: var(--bg-secondary);

    border: 1px solid var(--border-color);

    border-radius: 16px;

    padding: 32px;

}



.col-petition-article h1 {

    font-size: 28px;

    font-weight: 800;

    color: var(--text-primary);

    margin: 0 0 20px;

    line-height: 1.3;

}



.col-author-info {

    display: flex;

    align-items: center;

    gap: 12px;

    margin-bottom: 24px;

}



.col-author-avatar {

    width: 48px;

    height: 48px;

    background: linear-gradient(135deg, #7c3aed, #8b5cf6);

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 16px;

    font-weight: 700;

    color: white;

}



.col-author-name {

    font-size: 15px;

    font-weight: 600;

    color: var(--text-primary);

    display: block;

}



.col-author-date {

    font-size: 13px;

    color: var(--text-muted);

}



.col-petition-image {

    margin-bottom: 24px;

    border-radius: 12px;

    overflow: hidden;

}



.col-image-placeholder {

    height: 250px;

    background: var(--bg-tertiary, rgba(0,0,0,0.1));

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 64px;

    color: #8b5cf6;

    opacity: 0.3;

}



.col-petition-body {

    font-size: 16px;

    line-height: 1.7;

    color: var(--text-primary);

}



.col-petition-body p {

    margin: 0 0 16px;

}



.col-petition-body h3 {

    font-size: 18px;

    font-weight: 700;

    margin: 24px 0 12px;

}



.col-petition-body ul {

    margin: 0 0 16px;

    padding-left: 24px;

}



.col-petition-body li {

    margin-bottom: 8px;

}



/* Updates Section */

.col-updates-section {

    margin-top: 32px;

    padding-top: 24px;

    border-top: 1px solid var(--border-color);

}



.col-updates-section h3 {

    font-size: 18px;

    font-weight: 700;

    color: var(--text-primary);

    margin: 0 0 16px;

    display: flex;

    align-items: center;

    gap: 10px;

}



.col-updates-section h3 i { color: #8b5cf6; }



.col-update-item {

    padding: 16px;

    background: var(--bg-tertiary, rgba(0,0,0,0.1));

    border-radius: 10px;

    border-left: 3px solid #8b5cf6;

}



.col-update-date {

    font-size: 12px;

    color: var(--text-muted);

    display: block;

    margin-bottom: 6px;

}



.col-update-item h4 {

    font-size: 15px;

    font-weight: 600;

    color: var(--text-primary);

    margin: 0 0 6px;

}



.col-update-item p {

    font-size: 14px;

    color: var(--text-secondary);

    margin: 0;

}



/* Sign Card */

.col-petition-sidebar {

    display: flex;

    flex-direction: column;

    gap: 20px;

}



.col-sign-card {

    background: var(--bg-secondary);

    border: 1px solid var(--border-color);

    border-radius: 16px;

    padding: 24px;

}



.col-sign-progress {

    text-align: center;

    margin-bottom: 20px;

}



.col-sign-count {

    font-size: 48px;

    font-weight: 800;

    color: var(--text-primary);

}



.col-sign-goal {

    font-size: 14px;

    color: var(--text-muted);

    display: block;

    margin-bottom: 12px;

}



.col-sign-form {

    margin-bottom: 20px;

}



.col-checkbox {

    display: flex;

    align-items: center;

    gap: 10px;

    font-size: 13px;

    color: var(--text-secondary);

    margin-bottom: 16px;

    cursor: pointer;

}



.col-recent-signers h4 {

    font-size: 14px;

    font-weight: 600;

    color: var(--text-primary);

    margin: 0 0 12px;

}



.col-signer {

    display: flex;

    align-items: center;

    gap: 10px;

    padding: 8px 0;

}



.col-signer-avatar {

    width: 32px;

    height: 32px;

    background: linear-gradient(135deg, #7c3aed, #8b5cf6);

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 11px;

    font-weight: 700;

    color: white;

}



.col-signer-info span {

    display: block;

    font-size: 13px;

    color: var(--text-primary);

}



.col-signer-time {

    font-size: 11px !important;

    color: var(--text-muted) !important;

}



/* Share Card */

.col-share-card {

    background: var(--bg-secondary);

    border: 1px solid var(--border-color);

    border-radius: 16px;

    padding: 20px;

}



.col-share-card h4 {

    font-size: 14px;

    font-weight: 600;

    color: var(--text-primary);

    margin: 0 0 12px;

}



.col-share-btns {

    display: flex;

    gap: 10px;

}



.col-share-btn {

    width: 44px;

    height: 44px;

    border: none;

    border-radius: 10px;

    color: white;

    font-size: 18px;

    cursor: pointer;

}



.col-share-btn.facebook { background: #1877f2; }

.col-share-btn.twitter { background: #1da1f2; }

.col-share-btn.email { background: #ea4335; }

.col-share-btn.link { background: #6b7280; }



/* ============================================

   Create Page

   ============================================ */

.col-create-header {

    display: flex;

    align-items: center;

    gap: 16px;

    padding: 16px 24px;

    background: linear-gradient(135deg, #4c1d95, #7c3aed);

    color: white;

}



.col-create-header h1 {

    font-size: 20px;

    font-weight: 700;

    margin: 0;

    display: flex;

    align-items: center;

    gap: 10px;

}



.col-create-layout {

    display: grid;

    grid-template-columns: 1fr 320px;

    gap: 24px;

    padding: 24px;

    max-width: 1000px;

    margin: 0 auto;

}



.col-form-section {

    background: var(--bg-secondary);

    border: 1px solid var(--border-color);

    border-radius: 16px;

    padding: 24px;

    margin-bottom: 20px;

}



.col-form-section h2 {

    font-size: 18px;

    font-weight: 700;

    color: var(--text-primary);

    margin: 0 0 16px;

}



.col-hint {

    font-size: 13px;

    color: var(--text-muted);

    margin: 0;

}



.col-category-select {

    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 10px;

}



.col-cat-option {

    display: flex;

    align-items: center;

    gap: 10px;

    padding: 14px;

    background: var(--bg-tertiary, rgba(0,0,0,0.1));

    border: 2px solid var(--border-color);

    border-radius: 10px;

    cursor: pointer;

    font-size: 14px;

    color: var(--text-primary);

}



.col-cat-option:has(input:checked) {

    border-color: #8b5cf6;

    background: rgba(139, 92, 246, 0.1);

}



.col-cat-option input { display: none; }



.col-cat-option i {

    color: #8b5cf6;

    width: 20px;

}



.col-upload-area {

    border: 2px dashed var(--border-color);

    border-radius: 12px;

    padding: 40px;

    text-align: center;

    color: var(--text-muted);

    cursor: pointer;

}



.col-upload-area i {

    font-size: 36px;

    margin-bottom: 12px;

    display: block;

}



.col-form-actions {

    display: flex;

    gap: 12px;

    justify-content: flex-end;

}



.col-tips-card {

    background: var(--bg-secondary);

    border: 1px solid var(--border-color);

    border-radius: 16px;

    padding: 20px;

    position: sticky;

    top: 24px;

}



.col-tips-card h3 {

    font-size: 16px;

    font-weight: 700;

    color: var(--text-primary);

    margin: 0 0 16px;

    display: flex;

    align-items: center;

    gap: 10px;

}



.col-tips-card h3 i { color: #f59e0b; }



.col-tips-card ul {

    margin: 0;

    padding-left: 20px;

    font-size: 14px;

    color: var(--text-secondary);

    line-height: 1.8;

}



/* ============================================

   Admin Page

   ============================================ */

.col-admin-content {

    padding: 24px;

    max-width: 1200px;

    margin: 0 auto;

}



.col-admin-stats {

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 20px;

    margin-bottom: 24px;

}



.col-admin-stat {

    background: var(--bg-secondary);

    border: 1px solid var(--border-color);

    border-radius: 12px;

    padding: 20px;

    text-align: center;

}



.col-admin-stat-value {

    font-size: 28px;

    font-weight: 700;

    color: var(--text-primary);

    display: block;

}



.col-admin-stat-label {

    font-size: 13px;

    color: var(--text-muted);

}



.col-admin-table {

    padding: 0 20px 20px;

}



.col-table-header, .col-table-row {

    display: grid;

    grid-template-columns: 2fr 1fr 1fr 100px;

    gap: 16px;

    padding: 12px 0;

    align-items: center;

}



.col-table-header {

    font-size: 12px;

    font-weight: 600;

    color: var(--text-muted);

    text-transform: uppercase;

    border-bottom: 1px solid var(--border-color);

}



.col-table-row {

    font-size: 14px;

    color: var(--text-primary);

    border-bottom: 1px solid var(--border-color);

}



.col-cat-cell {

    display: flex;

    align-items: center;

    gap: 10px;

}



.col-cat-cell i { color: #8b5cf6; }



.col-status-badge {

    font-size: 11px;

    font-weight: 600;

    padding: 4px 10px;

    border-radius: 12px;

    display: inline-block;

}



.col-status-badge.active { background: rgba(16, 185, 129, 0.2); color: #10b981; }

.col-status-badge.victory { background: rgba(16, 185, 129, 0.2); color: #10b981; }



.col-row-actions {

    display: flex;

    gap: 6px;

}



/* ============================================

   My Petitions Page

   ============================================ */

.col-my-tabs {

    display: flex;

    gap: 4px;

    padding: 16px 24px;

    background: var(--bg-secondary);

    border-bottom: 1px solid var(--border-color);

}



.col-tab {

    padding: 10px 20px;

    background: none;

    border: none;

    border-radius: 8px;

    color: var(--text-secondary);

    font-size: 14px;

    font-weight: 600;

    cursor: pointer;

}



.col-tab.active {

    background: rgba(16, 185, 129, 0.1);

    color: #10b981;

}



.col-my-list {

    padding: 24px;

    max-width: 1000px;

    margin: 0 auto;

}



.col-my-petition {

    display: flex;

    align-items: center;

    gap: 20px;

    padding: 20px;

    background: var(--bg-secondary);

    border: 1px solid var(--border-color);

    border-radius: 12px;

    margin-bottom: 12px;

}



.col-my-petition-info {

    flex: 1;

}



.col-my-petition-info h3 {

    font-size: 16px;

    font-weight: 600;

    color: var(--text-primary);

    margin: 0 0 4px;

}



.col-my-petition-info p {

    font-size: 13px;

    color: var(--text-muted);

    margin: 0;

}



.col-my-petition-stats {

    width: 160px;

    text-align: center;

}



.col-my-petition-stats span {

    font-size: 12px;

    color: var(--text-muted);

}



/* ============================================

   Results Page

   ============================================ */

.col-results-content {

    padding: 24px;

    max-width: 800px;

    margin: 0 auto;

}



.col-result-card {

    background: var(--bg-secondary);

    border: 1px solid var(--border-color);

    border-radius: 16px;

    padding: 24px;

    margin-bottom: 20px;

}



.col-result-header {

    display: flex;

    justify-content: space-between;

    align-items: center;

    margin-bottom: 12px;

}



.col-result-status {

    font-size: 12px;

    font-weight: 700;

    padding: 4px 12px;

    border-radius: 12px;

}



.col-result-status.passed { background: rgba(16, 185, 129, 0.2); color: #10b981; }



.col-result-date {

    font-size: 13px;

    color: var(--text-muted);

}



.col-result-card h3 {

    font-size: 20px;

    font-weight: 700;

    color: var(--text-primary);

    margin: 0 0 20px;

}



.col-result-bars {

    display: flex;

    flex-direction: column;

    gap: 16px;

    margin-bottom: 20px;

}



.col-result-option {

    display: flex;

    flex-direction: column;

    gap: 6px;

}



.col-result-label {

    display: flex;

    justify-content: space-between;

    font-size: 14px;

    color: var(--text-primary);

}



.col-result-bar {

    height: 24px;

    background: var(--bg-tertiary, rgba(0,0,0,0.2));

    border-radius: 6px;

    overflow: hidden;

}



.col-result-fill {

    height: 100%;

    border-radius: 6px;

}



.col-result-fill.yes { background: #10b981; }

.col-result-fill.no { background: #ef4444; }



.col-result-votes {

    font-size: 12px;

    color: var(--text-muted);

}



.col-result-footer {

    display: flex;

    gap: 24px;

    font-size: 13px;

    color: var(--text-muted);

}



.col-result-footer i { margin-right: 6px; }



/* ============================================

   Responsive

   ============================================ */

@media (max-width: 1200px) {

    .col-petitions-grid { grid-template-columns: repeat(2, 1fr); }

    .col-petition-layout { grid-template-columns: 1fr 320px; }

}



@media (max-width: 900px) {

    .col-petitions-grid { grid-template-columns: 1fr; }

    .col-category-layout { grid-template-columns: 1fr; }

    .col-category-sidebar { display: none; }

    .col-petition-layout, .col-create-layout { grid-template-columns: 1fr; }

    .col-petition-sidebar, .col-create-sidebar { display: none; }

    .col-stats-bar { flex-wrap: wrap; gap: 24px; }

    .col-admin-stats { grid-template-columns: 1fr; }

}

