.mpq-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.mpq-modal-content {
    background: #fff;
    padding: 20px;
    border-radius: 6px;
    max-width: 500px;
    width: 90%;
    position: relative;
    text-align: center;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
}

.mpq-close {
  position: absolute;
  top: 5px;
  right: 10px;
  font-size: 24px;
  cursor: pointer;
}

.mpq-result {
  margin-top: 15px;
  font-weight: bold;
}

.mpq-start {
  background: #0073aa;
  color: #fff;
  border: none;
  padding: 10px 20px;
  font-size: 16px;
  border-radius: 4px;
  cursor: pointer;
}

.mpq-start:hover {
  background: #005b8a;
}



.mpq-module-block {
    border: 1px solid #ddd;
    border-radius: 6px;
    margin-bottom: 15px;
    overflow: hidden;
    background: #fafafa;
    transition: all 0.3s ease;
}

.mpq-module-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    background: #0073aa;
    color: #fff;
    cursor: pointer;
}

.mpq-module-header:hover {
    background: #005d8a;
}

.mpq-module-header h2 {
    margin: 0;
    font-size: 1.1rem;
}

.mpq-toggle {
    font-weight: bold;
    font-size: 1.5rem;
}

.mpq-module-lessons {
    display: none;
    padding: 15px;
}

.mpq-module-lessons.open {
    display: block;
}

.mpq-lesson-item {
    padding: 10px 0;
    border-bottom: 1px solid #e2e2e2;
}

.mpq-lesson-item:last-child {
    border-bottom: none;
}

.mpq-lesson-item h3 {
    margin: 0 0 5px;
    font-size: 1rem;
}

.mpq-view-link {
    display: inline-block;
    margin-right: 10px;
    color: #0073aa;
    text-decoration: none;
}

.mpq-view-link:hover {
    text-decoration: underline;
}

.mpq-submit-followed-lessons {
    background: #0073aa;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 20px;
}

.mpq-submit-followed-lessons:hover {
    background: #005d8a;
}
