/* General Reset */
* {
    font-family: 'Segoe UI', 'Inter', sans-serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Scoped Styles */
.mock-start-page {
  font-family: 'Segoe UI', 'Inter', sans-serif;
  background-color: #ffffff;
  color: #2c3e50;
  padding: 40px 20px;
  line-height: 1.6;
}

.mock-start-container {
  max-width: 1000px;
  margin: 0 auto;
}

.mock-title {
  font-size: 28px;
  margin-bottom: 20px;
  font-weight: 600;
  color: #222;
  text-align: center;
}

.mock-status {
  font-size: 16px;
  color: #16a085;
  margin-bottom: 20px;
  text-align: center;
}

.mock-btn {
  display: inline-block;
  padding: 12px 24px;
  font-size: 15px;
  font-weight: 500;
  border-radius: 6px;
  text-decoration: none;
  margin: 10px 8px;
  transition: all 0.25s ease;
  box-shadow: 0 2px 6px rgba(0,0,0,0.08);
  text-align: center;
  white-space: nowrap;
}

.mock-btn.resume {
  background: #3498db;
  color: white;
}

.mock-btn.restart {
  background: #e67e22;
  color: white;
}

.mock-btn.start {
  background: #27ae60;
  color: white;
}

.mock-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
}

.mock-instructions {
  margin-top: 30px;
  padding: 0;
  width: 100%;
  max-width: 800px;
  font-family: 'Segoe UI', sans-serif;
  color: #2c3e50;
  margin-left: auto;
  margin-right: auto;
}

.mock-instructions h3 {
  font-size: 20px;
  margin-bottom: 16px;
  font-weight: 600;
}

.mock-instructions ul {
  list-style: disc;
  padding-left: 20px;
}

.mock-instructions li {
  margin-bottom: 10px;
  font-size: 15px;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 600px) {
  .mock-title {
    font-size: 22px;
  }

  .mock-btn {
    display: block;
    width: 100%;
    margin: 10px 0;
    font-size: 16px;
  }

  .mock-instructions h3 {
    font-size: 18px;
  }

  .mock-instructions li {
    font-size: 14px;
  }
}
@media (max-width: 600px) {
  .mock-btn {
    width: 200px;
    max-width: 100%;
    display: block;
    margin: 12px 0 12px 10px; /* top/right/bottom/left */
    font-size: 16px;
    padding: 14px 0;
    text-align: center;
    box-sizing: border-box;
            margin-bottom: -20px;

  }
}
