/**
 * ProcessQueueProcessor Styles
 * Styles for the queue processor configuration page
 */

/* Cron URLs container */
.pqp-cron-urls {
    /* Container styles handled by ProcessWire */
}

/* Cron URL code blocks */
.pqp-cron-url {
    display: block;
    padding: 10px;
    background: #f5f5f5;
    border: 1px solid #ddd;
    border-radius: 3px;
    margin-bottom: 10px;
}

/* Example cron text */
.pqp-cron-example {
    margin: 5px 0;
    color: #666;
}

/* Description text */
.pqp-description {
    color: #666;
}

/* Queue item container */
.pqp-queue-item {
    margin-bottom: 15px;
    padding: 10px;
    background: #f9f9f9;
    border-left: 3px solid #0074d9;
}

/* Queue name */
.pqp-queue-name {
    /* Uses default strong styling */
}

/* Queue description */
.pqp-queue-desc {
    color: #666;
}

/* Queue URL code block */
.pqp-queue-url {
    display: block;
    padding: 8px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 3px;
    margin-top: 5px;
}

/* Rate limit info */
.pqp-rate-limit {
    display: inline-block;
    color: #666;
    padding-left: 10px;
}

/* Note text */
.pqp-note {
    margin-top: 20px;
    color: #666;
}
