/* General reset */
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background: #f8f9fa;
  color: #333;
}

.container {
  max-width: 600px;
  margin: 20px auto;
  padding: 15px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

h1 {
  text-align: center;
  font-size: 1.6rem;
  margin-bottom: 20px;
}

/* Form styling */
form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 8px;
  resize: vertical;
  font-size: 1rem;
}

button {
  background: #4CAF50;
  color: white;
  border: none;
  padding: 12px;
  border-radius: 8px;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.2s;
}

button:hover {
  background: #45a049;
}

/* Progress bar */
.progress-container {
  width: 100%;
  background: #e0e0e0;
  border-radius: 10px;
  margin: 15px 0;
  height: 14px;
  overflow: hidden;
}

#progress-bar {
  height: 100%;
  width: 0%;
  background: #4CAF50;
  transition: width 0.3s;
}

#status {
  text-align: center;
  font-weight: bold;
}

/* Results */
#results {
  margin-top: 20px;
  overflow-x: auto;
}

#results table {
  width: 100%;
  border-collapse: collapse;
}

#results th, #results td {
  padding: 10px;
  border: 1px solid #ddd;
}

#results th {
  background: #f4f4f4;
}

/* Follow buttons */
.follow-section {
  margin-top: 25px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.btn-telegram, .btn-twitter {
  display: inline-block;
  padding: 12px 20px;
  border-radius: 8px;
  text-decoration: none;
  color: white;
  font-weight: bold;
  transition: opacity 0.2s;
}

.btn-telegram {
  background: #0088cc;
}

.btn-twitter {
  background: #1DA1F2;
}

.btn-telegram:hover, .btn-twitter:hover {
  opacity: 0.85;
}

/* Mobile friendly */
@media (max-width: 600px) {
  .container {
    margin: 10px;
    padding: 12px;
  }
  
  h1 {
    font-size: 1.3rem;
  }
  
  button, textarea {
    font-size: 0.95rem;
  }
}
