.card {
  width: 100%;
  max-width: 400px;
  margin: 40px auto;
  padding: 24px;
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15); /* Gölge efekti */
  font-family: 'Segoe UI', 'Roboto', sans-serif;
}

.card-title {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 12px;
  color: #333;
}

.card-detail {
  font-size: 15px;
  color: #555;
  margin-bottom: 20px;
}

form label {
  display: block;
  margin-bottom: 6px;
  font-weight: 500;
  color: #444;
}

form input {
  width: 100%;
  padding: 10px 14px;
  margin-bottom: 16px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 14px;
}

.save-button {
  width: 80px;
  padding: 10px;
  background-color: #0d6efd; /* Bootstrap mavisi */
  color: white;
  font-weight: 600;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.save-button:hover {
  background-color: #1a75ff;
  transform: translateY(-2px);
}
