.accwc-scroll-container {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
    padding: 10px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    font-size: 0.9em;
}

.accwc-scroll-header {
    text-align: center;
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}

.accwc-scroll-title {
    margin: 0;
    font-size: 16px;
    color: #333;
}

.accwc-scroll-content {
    min-height: 100px;
    position: relative;
}

.accwc-scroll-item {
    padding: 12px;
    background: #f9f9f9;
    border-radius: 4px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    animation: fadeIn 0.5s ease-in-out;
}

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

.clue-rank {
    font-size: 1.2em;
    text-align: center;
    color: #666;
}

.clue-text {
    font-size: 15px;
    color: #333;
    text-align: center;
    line-height: 1.4;
    margin: 8px 0;
}

.clue-setter {
    font-size: 12px;
    color: #666;
    font-style: italic;
    text-align: center;
    border-top: 1px solid #eee;
    padding-top: 8px;
    margin-top: 4px;
}

.clue-points {
    font-size: 12px;
    color: #888;
    font-weight: bold;
    text-align: center;
    margin-top: 4px;
}

.competition-number {
    color: #6c757d;
    font-weight: normal;
}

.error {
    color: #dc3545;
    padding: 6px;
    text-align: center;
    background-color: #f8d7da;
    border-radius: 2px;
    margin: 4px 0;
    font-size: 0.9em;
}

/* Responsive adjustments */
@media screen and (max-width: 768px) {
    .accwc-scroll-content {
        font-size: 14px;
    }
}

