/* Gap Fill Exercise Styles */

/* Success Message Styles */
.success-message {
  text-align: center;
  padding: 40px 20px;
  background: #f8f9fa;
  border-radius: 8px;
  border: 1px solid #dee2e6;
  margin-bottom: 30px;
}

.success-message h2 {
  color: #28a745;
  font-size: 28px;
  margin-bottom: 15px;
  font-weight: 600;
}

.success-message p {
  font-size: 16px;
  color: #666;
  margin-bottom: 20px;
}

.url-display {
  margin: 20px 0;
  padding: 15px;
  background: #fff;
  border: 2px solid #28a745;
  border-radius: 6px;
  display: inline-block;
}

.activity-url {
  color: #007bff;
  text-decoration: none;
  font-size: 18px;
  font-weight: 500;
  word-break: break-all;
}

.activity-url:hover {
  color: #0056b3;
  text-decoration: underline;
}

.action-buttons {
  margin-top: 25px;
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

.action-buttons .create_button {
  display: inline-block;
  padding: 12px 24px;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 500;
  transition: all 0.2s ease;
  color: white;
  border: 2px solid #007bff;
  background: #007bff;
  cursor: pointer;
  font-size: 16px;
}

.action-buttons .create_button.secondary {
  background: #6c757d;
  border: 2px solid #6c757d;
  color: white;
}

.action-buttons .create_button:hover {
  background: #0056b3;
  border-color: #0056b3;
  transform: translateY(-1px);
  box-shadow: 0 4px 8px rgba(0, 123, 255, 0.3);
}

.action-buttons .create_button.secondary:hover {
  background: #5a6268;
  border-color: #5a6268;
  transform: translateY(-1px);
  box-shadow: 0 4px 8px rgba(108, 117, 125, 0.3);
}

/* Responsive Design for Success Message */
@media (max-width: 480px) {
  .success-message {
    padding: 20px 15px;
  }
  
  .success-message h2 {
    font-size: 24px;
  }
  
  .activity-url {
    font-size: 16px;
  }
  
  .action-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .action-buttons .create_button {
    width: 100%;
    max-width: 300px;
  }
} 