/* IPL Live Tool Styling */
.ipl-live-tool {
  max-width: 400px;
  margin: 20px auto;
  padding: 20px;
  background: linear-gradient(135deg, #1e3c72, #2a5298);
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  text-align: center;
  transition: transform 0.3s ease;
}

.ipl-live-tool:hover {
  transform: scale(1.05);
}

.ipl-title {
  color: #fff;
  font-size: 24px;
  margin-bottom: 15px;
  font-family: 'Arial', sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.ipl-button {
  background-color: #ff6b6b;
  color: #fff;
  border: none;
  padding: 12px 25px;
  font-size: 16px;
  font-weight: bold;
  border-radius: 25px;
  cursor: pointer;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.ipl-button:hover {
  background-color: #ff8787;
  box-shadow: 0 0 10px rgba(255, 107, 107, 0.7);
}

.ipl-button:active {
  transform: scale(0.95);
}

/* Responsive Design */
@media (max-width: 768px) {
  .ipl-live-tool {
    max-width: 100%;
    margin: 10px;
    padding: 15px;
  }

  .ipl-title {
    font-size: 20px;
  }

  .ipl-button {
    padding: 10px 20px;
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .ipl-title {
    font-size: 18px;
  }

  .ipl-button {
    width: 100%;
    padding: 12px;
  }
}