/* CLEAN GIMMY UI */

body {
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
  background: #f5f6fa;
}

.container {
  padding: 20px;
  max-width: 700px;
  margin: auto;
}

h1 {
  margin: 0;
  font-size: 28px;
}

h2 {
  margin-top: 25px;
  margin-bottom: 10px;
  font-size: 22px;
}

.main-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.user-box {
  display: flex;
  gap: 8px;
  align-items: center;
}

.user-photo {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
}

.secondary-btn {
  border: 1px solid #ccc;
  background: white;
  border-radius: 999px;
  padding: 8px 14px;
  cursor: pointer;
}

.secondary-btn:hover {
  background: #e6e6ff;
}

.category-title {
  margin-top: 20px;
  font-size: 18px;
  color: #6c63ff;
  font-weight: bold;
}

.exercise-card {
  background: white;
  border-radius: 12px;
  padding: 15px;
  margin-top: 10px;
  display: flex;
  justify-content: space-between;
  box-shadow: 0 3px 10px rgba(0,0,0,0.06);
}

.exercise-name {
  font-weight: bold;
}

.exercise-details {
  color: #555;
  font-size: 14px;
}

.start-btn {
  background: #6c63ff;
  color: white;
  padding: 8px 12px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
}

#startWorkoutBtn {
  position: fixed;
  bottom: 25px;
  right: 25px;
  background: #6c63ff;
  color: white;
  padding: 16px 22px;
  border: none;
  border-radius: 50px;
  font-size: 17px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.25);
  cursor: pointer;
}

#startWorkoutBtn[disabled] {
  opacity: 0.5;
  cursor: default;
}

.info-message {
  margin-top: 20px;
  color: #777;
}
.primary-btn {
  background: #6c63ff;
  color: white;
  padding: 16px;
  border-radius: 12px;
  border: none;
  display: block;
  width: 100%;
  font-size: 18px;
  cursor: pointer;
  margin-top: 20px;
}

.primary-btn:hover {
  background: #5a52ea;
}
