/* Container with links */
.div-data > a {
  display: inline-block;
  margin: 10px;
  padding: 10px 18px;
  border-radius: 30px;
  background: green;
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s;
}

.div-data > a:hover {
  background: #0077cc;
}

/* Form styling */
form {
  max-width: 500px;
  margin: 30px auto;
  padding: 20px 25px;
  background: #f9f9f9;
  border-radius: 12px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
  direction: rtl; /* Arabic alignment */
  text-align: right;
}

form label {
  display: block;
  margin: 10px 0 6px;
  font-weight: bold;
  color: #333;
}

form input[type="text"],
form input[type="url"],
form input[type="date"],
form input[type="file"],
form textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 8px;
  margin-bottom: 12px;
  font-size: 14px;
}

form textarea {
  resize: vertical;
  min-height: 80px;
}

form button {
  display: inline-block;
  width: 100%;
  padding: 12px;
  border: none;
  border-radius: 30px;
  background: green;
  color: #fff;
  font-size: 16px;
  cursor: pointer;
  font-weight: bold;
  transition: 0.3s;
}

form button:hover {
  background: #0077cc;
}
