/* ===============================
   Reading Resume Pro – CSS
   =============================== */

#readingProgressBar {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, #1e73be, #00c6ff);
  z-index: 99999;
}

/* Resume Box */
#readingResumeBox {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #ffffff;
  padding: 14px 16px;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
  display: none;
  align-items: center;
  gap: 12px;
  z-index: 9999;
}

/* Text */
#readingResumeBox .resume-text strong {
  display: block;
  font-size: 14px;
  color: #222;
}

#readingResumeBox .resume-text span {
  font-size: 12px;
  color: #666;
}

/* Buttons */
#readingResumeBox button {
  border: none;
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 12px;
  cursor: pointer;
  line-height: 1;
}

#resumeBtn {
  background: #1e73be;
  color: #ffffff;
}

#resumeBtn:hover {
  background: #155a96;
}

#restartBtn {
  background: #e0e0e0;
  color: #000000;
}

/* Mobile Optimization */
@media (max-width: 768px) {
  #readingResumeBox {
    left: 10px;
    right: 10px;
    bottom: 15px;
  }
}