/*
 * Plugin Name: TTB Auto Mouse Clicker
 * Description: Simulates automatic mouse clicks every 5 seconds with a visual countdown and click counter.
 * Author: The Tool Bakery
 */

/* Main container and card styling */
.ttb-amc-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  width: 100%;
  max-width: 960px;
  background: #0f1116;
  border: 1px solid #1b1e27;
  border-radius: 16px;
  color: #e9ecf1;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.45);
  padding: 20px;
  margin: 24px auto;
}

/* Button styling */
#ttb-amc-start,
#ttb-amc-stop {
  border: none;
  border-radius: 12px;
  padding: 10px 14px;
  cursor: pointer;
  font-weight: 800;
  width: 150px;
  text-align: center;
}

#ttb-amc-start {
  background: #2a62f0;
  color: #fff;
  box-shadow: 0 10px 18px rgba(42, 98, 240, 0.25);
}

#ttb-amc-stop {
  background: #2a3347;
  color: #c9cdd8;
  opacity: 0.8;
}

#ttb-amc-stop:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

/* Counter display */
#ttb-amc-counter {
  font-size: 16px;
  font-weight: bold;
  opacity: 0.9;
  padding: 8px 12px;
  background: #111421;
  border: 1px solid #22283a;
  border-radius: 10px;
}

/* Canvas styling */
#ttb-amc-canvas {
  width: 100%;
  max-width: 500px;
  height: 300px;
  background: #0c0f18;
  border: 1px solid #242a3d;
  border-radius: 12px;
}

/* Note text styling */
.ttb-amc-note {
  margin-top: 15px;
  padding: 10px;
  background: #fff3cd;
  border: 1px solid #ffeeba;
  border-radius: 5px;
  color: #856404;
  font-size: 14px;
  line-height: 1.5;
}

.ttb-amc-container h2{margin:0 0 6px 0;font-size:22px;font-weight:800;letter-spacing:.2px}