/*
 * This is a manifest file that'll be compiled into application.css.
 *
 * With Propshaft, assets are served efficiently without preprocessing steps. You can still include
 * application-wide styles in this file, but keep in mind that CSS precedence will follow the standard
 * cascading order, meaning styles declared later in the document or manifest will override earlier ones,
 * depending on specificity.
 *
 * Consider organizing styles into separate files for maintainability.
 */

.linkedin-review {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto;
}

.linkedin-review h2 {
  color: #0077b5;  /* LinkedIn blue */
  border-bottom: 1px solid #eee;
  padding-bottom: 10px;
  margin-top: 30px;
}

.linkedin-review pre {
  background: #f8f8f8;
  border: 1px solid #ddd;
  padding: 15px;
  border-radius: 5px;
  white-space: pre-wrap;
  overflow-x: auto;
  position: relative;
}

.linkedin-review .copy-button {
  position: absolute;
  top: 10px;
  right: 10px;
  padding: 5px 10px;
  background: #0077b5;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

.linkedin-review .copy-button:hover {
  background: #005582;
}

.linkedin-review ul {
  list-style-type: disc;
  padding-left: 20px;
  margin: 10px 0;
}


