/* Global styles */
:root {
    --primary-color: #4a6fa5;
    --secondary-color: #166088;
    --background-color: #f5f7fa;
    --sidebar-color: #f0f2f5;
    --text-color: #333;
    --border-color: #ddd;
    --highlight-color: #e4f0f9;
    --success-color: #4caf50;
    --warning-color: #ff9800;
    --danger-color: #f44336;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    display: flex;
    height: 100vh;
    background-color: var(--background-color);
    color: var(--text-color);
    overflow: hidden;
}

/* Sidebar/Inbox styles */
.sidebar {
    width: 300px;
    height: 100%;
    background-color: var(--sidebar-color);
    border-right: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}

.sidebar-header {
    padding: 20px;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.home-button {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px 16px;
    background-color: var(--primary-color);
    color: white;
    border: none;
    width: 150px;
    margin-right: 20px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
}

.home-button svg {
    margin-right: 8px;
}

.language-selector {
    padding: 8px;
    border-radius: 4px;
    border: 1px solid var(--border-color);
    background-color: white;
    cursor: pointer;
}

.sidebar-posts {
    flex: 1;
    overflow-y: auto;
}

.post-item {
    display: flex;
    padding: 16px;
    border-bottom: 1px solid var(--border-color);
    cursor: pointer;
    transition: background-color 0.2s;
}

.post-item:hover {
    background-color: var(--highlight-color);
}

.post-item.unread::after {
    content: '';
    display: block;
    width: 10px;
    height: 10px;
    background-color: var(--primary-color);
    border-radius: 50%;
    margin-left: 10px;
    align-self: center;
}

.post-item.processed {
    opacity: 0.7;
}

.post-thumbnail {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 4px;
    margin-right: 12px;
}

.post-info {
    flex: 1;
}

.post-title {
    font-weight: 600;
    margin-bottom: 4px;
}

.post-status {
    display: flex;
    align-items: center;
    font-size: 0.8rem;
    color: var(--success-color);
}

.post-status.flagged {
    color: var(--danger-color);
}

.post-status svg {
    margin-right: 4px;
}

/* Main content styles */
.main-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}

.top-menu {
    display: none;
    padding: 16px;
    background-color: white;
    border-bottom: 1px solid var(--border-color);
}

.top-menu-buttons {
    display: flex;
    gap: 10px;
}

.action-button {
    display: flex;
    align-items: center;
    padding: 8px 16px;
    border: none;
    border-radius: 4px;
    background-color: var(--primary-color);
    color: white;
    cursor: pointer;
    font-weight: 500;
    transition: background-color 0.2s;
}

.action-button svg {
    margin-right: 8px;
}

.action-button:hover {
    background-color: var(--secondary-color);
}

.action-button.publish {
    background-color: var(--success-color);
}

.action-button.flag {
    background-color: var(--danger-color);
}

.action-button.search {
    background-color: var(--secondary-color);
}

.back-button {
    display: inline-flex;
    align-items: center;
    padding: 8px 16px;
    border: none;
    background-color: transparent;
    color: var(--primary-color);
    cursor: pointer;
    font-weight: 500;
    text-align: center;
    gap: 8px;
}

.content-area {
    flex: 1;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow-y: auto;
}

/* Page-specific styles */
.video-container {
    width: 100%;
    max-width: 800px;
    aspect-ratio: 16/9;
    margin: 0 auto;
    background-color: black;
}

.video-container video {
    width: 100%;
    height: 100%;
}

.post-view {
    width: 100%;
    max-width: 800px;
}

.post-image {
    width: 100%;
    max-height: 500px;
    object-fit: contain;
    margin-bottom: 20px;
    border-radius: 4px;
}

.post-content h2 {
    margin-bottom: 16px;
}

.post-content p {
    line-height: 1.6;
    margin-bottom: 16px;
}

.search-buttons {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
    max-width: 500px;
    margin: 40px 0;
}

.search-button {
    padding: 16px;
    font-size: 1.1rem;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.2s;
}

.search-button:hover {
    background-color: var(--secondary-color);
}

.search-results {
    width: 100%;
    max-width: 800px;
}

.search-result-item {
    padding: 16px;
    margin-bottom: 16px;
    background-color: white;
    border-radius: 8px;
    border: 1px solid var(--border-color);
}

.search-result-item.ad {
    border-left: 4px solid var(--warning-color);
}

.search-result-item.ad::before {
    content: attr(data-ad-text);
    display: block;
    font-size: 0.7rem;
    color: var(--warning-color);
    margin-bottom: 4px;
}

.image-search-results {
    width: 100%;
    max-width: 800px;
}

.image-verification {
    margin-bottom: 20px;
    text-align: center;
}

.image-verification h2{
    margin-bottom: 20px;
    text-align: center;
}

.verification-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}

.image-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 20px;
}

.image-item {
    position: relative;
    cursor: pointer;
    border-radius: 8px;
    overflow: hidden;
    border: 2px solid transparent;
}

.image-item.selected {
    border-color: var(--primary-color);
}

.image-item img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
}

.image-info {
    padding: 10px;
    background-color: rgba(0, 0, 0, 0);
    color: white;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    font-size: 0.8rem;
}

.feedback-message {
    text-align: center;
    margin: 20px 0;
    font-weight: 600;
    color: var(--success-color);
}

.feedback-message.error {
    color: var(--danger-color);
}

/* Responsive styles */
@media (max-width: 768px) {
    body {
        flex-direction: column;
    }

    .sidebar {
        width: 100%;
        height: auto;
        max-height: 40vh;
    }

    .main-content {
        width: 100%;
    }

    .image-grid {
        grid-template-columns: 1fr;
    }
}

/* Page visibility management */
.page {
    display: none;
    width: 100%;
}

.page.active {
    display: block;
}




.custom-select {
  position: relative;
  width: 160px;
  font-size: 14px;
  user-select: none;
  cursor: pointer;
}

.selected {
  padding: 8px 12px;
  background-color: white;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.options {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  border: 1px solid #ccc;
  border-top: none;
  background-color: white;
  display: none;
  z-index: 9999;
list-style: none;
  margin: 0;
  padding: 0;
}

.options li {
  padding: 8px 12px;
  cursor: pointer;
}

.options li:hover {
  background-color: #f0f0f0;
}

.custom-select.open .options {
  display: block;
}

/* Credibility and Popularity Meters */
.meters-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 1000;
    font-family: Arial, sans-serif;
}

.meter {
    background: rgba(255, 255, 255, 0.95);
    border: 2px solid #ddd;
    border-radius: 8px;
    padding: 12px 17px;
    min-width: 180px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    cursor: help;
    transition: all 0.3s ease;
}

.meter:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.credibility-meter {
    border-color: #4CAF50;
    color: #2E7D32;
}

.popularity-meter {
    border-color: #FF9800;
    color: #E65100;
}

.completion-counter {
    border-color: #007bff;
    color: #004085;
}

.meter-label {
    font-size: 15px;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 2px;
}

.meter-value {
    font-size: 26px;
    font-weight: bold;
}

.meter-change {
    font-size: 10px;
    margin-top: 2px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.meter-change.show {
    opacity: 1;
    animation: fadeInOut 2s ease-in-out;
}

.meter-change.positive {
    color: #4CAF50;
}

.meter-change.negative {
    color: #f44336;
}

@keyframes fadeInOut {
    0% { opacity: 0; transform: translateY(5px); }
    50% { opacity: 1; transform: translateY(0); }
    100% { opacity: 0; transform: translateY(-5px); }
}

/* Tooltip styles */
.meter-tooltip {
    position: absolute;
    bottom: 100%;
    right: 0;
    background: rgba(0, 0, 0, 0.9);
    color: white;
    padding: 8px 12px;
    border-radius: 4px;
    font-size: 12px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    margin-bottom: 5px;
    z-index: 1001;
}

.meter-tooltip::after {
    content: '';
    position: absolute;
    top: 100%;
    right: 20px;
    border: 5px solid transparent;
    border-top-color: rgba(0, 0, 0, 0.9);
}

.meter:hover .meter-tooltip {
    opacity: 1;
    visibility: visible;
}

.search-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    animation: fadeIn 0.3s ease;
}

.search-popup {
    background: white;
    border-radius: 12px;
    max-width: 600px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    animation: slideIn 0.3s ease;
}

.popup-header {
    padding: 24px 24px 16px;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 16px;
}

.popup-header h3 {
    margin: 0;
    font-size: 1.25rem;
    font-weight: 600;
    color: #1a1a1a;
    flex: 1;
}

.popup-close {
    background: none;
    border: none;
    padding: 8px;
    cursor: pointer;
    border-radius: 6px;
    color: #666;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.popup-close:hover {
    background-color: #f5f5f5;
    color: #333;
}

.popup-content {
    padding: 24px;
}

.source-description {
    margin-bottom: 24px;
}

.source-description p {
    margin: 0;
    color: #555;
    line-height: 1.5;
}

.relevance-analysis h4 {
    margin: 0 0 12px 0;
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a1a1a;
}

.reasoning-content {
    background-color: #f8f9fa;
    padding: 16px;
    border-radius: 8px;
    margin-bottom: 16px;
    line-height: 1.6;
    color: #333;
}

.reasoning-content.warning {
    background-color: #fff3cd;
    border-left: 4px solid #ffc107;
}

.reasoning-content.neutral {
    background-color: #f8f9fa;
    border-left: 4px solid #6c757d;
}

.relevance-score {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.score-label {
    font-weight: 500;
    color: #555;
}

.score-value {
    padding: 4px 12px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
}

.score-value.high {
    background-color: #d4edda;
    color: #155724;
}

.score-value.medium-high {
    background-color: #d1ecf1;
    color: #0c5460;
}

.score-value.medium {
    background-color: #fff3cd;
    color: #856404;
}

.score-value.medium-low {
    background-color: #f8d7da;
    color: #721c24;
}

.score-value.low {
    background-color: #f8d7da;
    color: #721c24;
}

.ad-warning {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background-color: #fff3cd;
    border: 1px solid #ffc107;
    border-radius: 8px;
    color: #856404;
    margin-bottom: 20px;
}

.ad-warning svg {
    flex-shrink: 0;
}

.popup-actions {
    padding: 20px 24px 24px;
    border-top: 1px solid #eee;
    display: flex;
    justify-content: flex-end;
    gap: 12px;
}

.action-btn {
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    border: none;
    font-size: 0.95rem;
}

.action-btn.secondary {
    background-color: #f8f9fa;
    color: #495057;
}

.action-btn.secondary:hover {
    background-color: #e9ecef;
}

.action-btn.primary {
    background-color: #007bff;
    color: white;
}

.action-btn.primary:hover {
    background-color: #0056b3;
}

/* Enhanced search result styles */
.search-result-item.clickable {
    cursor: pointer;
    transition: all 0.2s ease;
}

.search-result-item.clickable:hover {
    background-color: #f8f9fa;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.search-result-item.used-evidence {
    border-left: 4px solid #28a745;
    background-color: #f8fff9;
}

.search-result-item.used-evidence::after {
    content: "✓ Used as Evidence";
    display: block;
    font-size: 0.8rem;
    color: #28a745;
    font-weight: 500;
    margin-top: 8px;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

/* Responsive design */
@media (max-width: 768px) {
    .search-popup {
        width: 95%;
        margin: 20px;
    }

    .popup-header,
    .popup-content,
    .popup-actions {
        padding: 16px;
    }

    .popup-actions {
        flex-direction: column;
    }

    .action-btn {
        width: 100%;
    }
}

/* ... existing styles ... */

/* Evidence limit and counter styles */
.evidence-limit-warning {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background-color: #fff3cd;
    border: 1px solid #ffc107;
    border-radius: 8px;
    color: #856404;
    margin-bottom: 20px;
}

.evidence-limit-warning svg {
    flex-shrink: 0;
}

.evidence-counter {
    text-align: center;
    padding: 8px;
    background-color: #f8f9fa;
    border-radius: 6px;
    margin-bottom: 16px;
    font-size: 0.9rem;
    color: #6c757d;
}

.action-btn.disabled {
    background-color: #6c757d;
    cursor: not-allowed;
    opacity: 0.6;
}

.action-btn.disabled:hover {
    background-color: #6c757d;
}

/* Evidence number indicator on search results */
.evidence-number {
    position: absolute;
    top: 8px;
    right: 8px;
    background-color: #28a745;
    color: white;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    z-index: 1;
}

.search-result-item {
    position: relative;
}

/* Update the existing used-evidence after selector */
.search-result-item.used-evidence::after {
    content: "✓ Used as Evidence";
    display: block;
    font-size: 0.8rem;
    color: #28a745;
    font-weight: 500;
    margin-top: 8px;
    padding-left: 20px;
    background-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M20 6L9 17L4 12' stroke='%2328a745' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: left center;
}

/* Evidence limit notification */
.evidence-limit-notification {
    position: fixed;
    top: 20px;
    right: 20px;
    max-width: 400px;
    z-index: 1001;
    animation: slideInRight 0.3s ease;
}

.notification-content {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 16px;
    background: white;
    border: 1px solid #28a745;
    border-left: 4px solid #28a745;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.notification-content svg {
    flex-shrink: 0;
    color: #28a745;
    margin-top: 2px;
}

.notification-text strong {
    display: block;
    margin-bottom: 4px;
    color: #333;
}

.notification-text p {
    margin: 0;
    font-size: 0.9rem;
    color: #666;
    line-height: 1.4;
}

.notification-close {
    background: none;
    border: none;
    padding: 4px;
    cursor: pointer;
    color: #999;
    margin-left: auto;
    flex-shrink: 0;
}

.notification-close:hover {
    color: #666;
}

@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Update responsive design for notifications */
@media (max-width: 768px) {
    /* ... existing responsive styles ... */

    .evidence-limit-notification {
        top: 10px;
        right: 10px;
        left: 10px;
        max-width: none;
    }

    .notification-content {
        padding: 12px;
    }

    .meters-container {
        bottom: 10px;
        right: 10px;
    }
}

/* Page-specific styles */
.tutorial-content {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.tutorial-content h1 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 30px;
    font-size: 2.2rem;
}

.tutorial-content h2 {
    color: var(--secondary-color);
    margin: 25px 0 15px 0;
    font-size: 1.5rem;
}

.tutorial-content h3 {
    color: var(--text-color);
    margin: 20px 0 10px 0;
    font-size: 1.2rem;
}

.tutorial-content p {
    line-height: 1.6;
    margin-bottom: 16px;
    font-size: 1.1rem;
}

.tutorial-steps {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.tutorial-steps li {
    background-color: var(--highlight-color);
    margin: 12px 0;
    padding: 15px;
    border-radius: 6px;
    border-left: 4px solid var(--primary-color);
    font-size: 1rem;
    line-height: 1.5;
}

.key-skills {
    background-color: var(--sidebar-color);
    padding: 20px;
    border-radius: 6px;
    margin: 25px 0;
}

.key-skills ul {
    margin: 15px 0;
    padding-left: 20px;
}

.key-skills li {
    margin: 8px 0;
    line-height: 1.5;
}

.get-started {
    text-align: center;
    margin-top: 30px;
    padding: 20px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 6px;
}

.get-started p {
    margin: 0;
    font-size: 1.1rem;
}

.video-container {
    width: 100%;
    max-width: 800px;
    aspect-ratio: 16/9;
    margin: 0 auto;
    background-color: black;
}

.video-container video {
    width: 100%;
    height: 100%;
}

/* ... existing styles ... */

/* Verification Popup Styles */
.verification-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    animation: fadeIn 0.3s ease;
}

.verification-popup {
    background: white;
    border-radius: 12px;
    max-width: 700px;
    width: 90%;
    max-height: 85vh;
    overflow-y: auto;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
    animation: slideIn 0.4s ease;
}

.decision-result {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 24px;
    border-radius: 8px;
    margin-bottom: 24px;
}

.decision-result.verified {
    background-color: #d4f6d4;
    border-left: 6px solid #22c55e;
}

.decision-result.debunked {
    background-color: #fef2f2;
    border-left: 6px solid #ef4444;
}

.decision-icon {
    flex-shrink: 0;
}

.decision-result.verified .decision-icon svg {
    color: #22c55e;
}

.decision-result.debunked .decision-icon svg {
    color: #ef4444;
}

.decision-text h4 {
    margin: 0 0 8px 0;
    font-size: 1.25rem;
    color: #1a1a1a;
}

.decision-label {
    font-weight: 700;
}

.decision-result.verified .decision-label {
    color: #22c55e;
}

.decision-result.debunked .decision-label {
    color: #ef4444;
}

.post-title-ref {
    font-style: italic;
    color: #666;
    margin: 0;
    font-size: 0.95rem;
}

.verification-analysis {
    margin-top: 20px;
}

.verification-analysis h4 {
    margin: 0 0 16px 0;
    color: #1a1a1a;
}

.analysis-content {
    background-color: #f8f9fa;
    padding: 16px;
    border-radius: 8px;
    line-height: 1.6;
    margin-bottom: 20px;
    border-left: 4px solid #6c757d;
}

.evidence-used {
    background-color: #e7f3ff;
    padding: 12px 16px;
    border-radius: 6px;
    margin-bottom: 16px;
    border-left: 4px solid #0066cc;
}

.evidence-used h5 {
    margin: 0 0 6px 0;
    color: #0066cc;
    font-size: 0.9rem;
    font-weight: 600;
}

.evidence-used p {
    margin: 0;
    font-size: 0.85rem;
    color: #333;
}

.no-evidence-warning {
    display: flex;
    align-items: center;
    gap: 10px;
    background-color: #fff8e1;
    padding: 12px 16px;
    border-radius: 6px;
    margin-bottom: 16px;
    border-left: 4px solid #ff9800;
}

.no-evidence-warning svg {
    color: #ff9800;
    flex-shrink: 0;
}

.no-evidence-warning span {
    font-size: 0.85rem;
    color: #333;
}

.meter-impact {
    background-color: #f1f5f9;
    padding: 16px;
    border-radius: 8px;
    border-left: 4px solid #4a6fa5;
}

.meter-impact h5 {
    margin: 0 0 12px 0;
    color: #1a1a1a;
    font-size: 0.95rem;
}

.metric-changes {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.metric-change {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.metric-name {
    font-weight: 500;
    color: #555;
    font-size: 0.85rem;
}

.change-value {
    font-weight: 600;
    font-size: 0.85rem;
}

.change-value.positive {
    color: #22c55e;
}

.change-value.negative {
    color: #ef4444;
}

.credibility-bonus {
    padding-top: 8px;
    border-top: 1px solid #ddd;
    margin-top: 4px;
}

/* Update responsive design for verification popup */
@media (max-width: 768px) {
    .verification-popup {
        width: 95%;
        margin: 10px;
        max-height: 90vh;
    }

    .decision-result {
        flex-direction: column;
        text-align: center;
        gap: 12px;
        padding: 20px 16px;
    }

    .popup-actions {
        flex-direction: column;
        gap: 8px;
    }

    .action-btn {
        width: 100%;
    }
}

/* Decision popup styles */
.decision-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

.decision-popup {
    background: white;
    border-radius: 12px;
    max-width: 600px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.decision-result.correct {
    background: linear-gradient(135deg, #d4edda 0%, #c3e6cb 100%);
    color: #155724;
    border: 2px solid #28a745;
}

.decision-result.incorrect {
    background: linear-gradient(135deg, #f8d7da 0%, #f1b0b7 100%);
    color: #721c24;
    border: 2px solid #dc3545;
}

.decision-result h4.correct {
    color: #28a745;
}

.decision-result h4.incorrect {
    color: #dc3545;
}

.learning-tip {
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    border-radius: 8px;
    padding: 16px;
    margin-top: 16px;
}

.success-message {
    background: #d4edda;
    border: 1px solid #c3e6cb;
    border-radius: 8px;
    padding: 16px;
    margin-top: 16px;
}

.decision-details, .correct-choice {
    margin: 8px 0;
    font-size: 0.95rem;
}

.correct-choice {
    color: #28a745;
    font-weight: 600;
}

