/* Общие стили */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f5f5f5;
    color: #333;
  }
  
  .easydonate-widget {
    max-width: 600px;
    margin: 20px auto;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    padding: 20px;
  }
  
  .easydonate-widget h2 {
    text-align: center;
    color: #4285f4;
    margin-bottom: 20px;
    font-size: 24px;
    font-weight: bold;
  }
  
  /* Стили для формы */
  .easydonate-form label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
    color: #555;
  }
  
  .easydonate-form input[type="text"],
  .easydonate-form input[type="email"],
  .easydonate-form input[type="number"],
  .easydonate-form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
    transition: border-color 0.2s ease-in-out;
  }
  
  .easydonate-form input[type="text"]:focus,
  .easydonate-form input[type="email"]:focus,
  .easydonate-form input[type="number"]:focus,
  .easydonate-form textarea:focus {
    border-color: #4285f4;
    outline: none;
  }
  
  .easydonate-form textarea {
    resize: vertical;
    min-height: 100px;
  }
  
  /* Стили для кнопки */
  .easydonate-form button {
    background: linear-gradient(to right, #4285f4, #34a853);
    color: #fff;
    padding: 12px 25px;
    border: none;
    border-radius: 5px;
    font-size: 18px;
    cursor: pointer;
    transition: background 0.3s ease-in-out, transform 0.2s ease-in-out;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    font-weight: bold;
  }
  
  .easydonate-form button:hover {
    background: linear-gradient(to right, #34a853, #4285f4);
    transform: scale(1.05);
  }
  
  .easydonate-form button:active {
    transform: scale(0.95);
  }
  
  /* Стили для ошибок */
  .easydonate-error {
    color: #d32f2f;
    font-size: 14px;
    margin-top: -10px;
    margin-bottom: 10px;
  }
  
  /* Стили для сообщений об успехе */
  .easydonate-success {
    color: #43a047;
    font-size: 16px;
    margin-top: 10px;
    text-align: center;
  }
  
  /* Дополнительные стили (опционально) */
  .easydonate-widget p {
    margin-bottom: 15px;
    line-height: 1.6;
  }
  
  .easydonate-widget .easydonate-amount-options {
    display: flex;
    justify-content: space-around;
    margin-bottom: 20px;
  }
  
  .easydonate-widget .easydonate-amount-option {
    background-color: #f0f4c3; /* Changed color for better visibility */
    border: 1px solid #a0b23c; /* Changed color for better visibility */
    color: #6d7829;  /* Changed color for better visibility */
    padding: 10px 15px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }
  
  .easydonate-widget .easydonate-amount-option:hover {
    background-color: #b7cb58; /* Changed color for better visibility */
  }
  
  .easydonate-widget .easydonate-amount-option.selected {
    background-color: #6d7829; /* Changed color for better visibility */
    color: #fff;
  }
  
  /* Медиа-запросы для адаптивности */
  @media (max-width: 768px) {
    .easydonate-widget {
      margin: 10px;
      padding: 15px;
    }
  
    .easydonate-form input[type="text"],
    .easydonate-form input[type="email"],
    .easydonate-form input[type="number"],
    .easydonate-form textarea {
      font-size: 14px;
    }
  
    .easydonate-form button {
      font-size: 16px;
    }
  }
  