/* style.css */

body {
  font-family: Arial, sans-serif;
  margin: 20px;
  background-color: #f0f2f5;
}

form {
  margin-left: 450px;
  display: flex;
  flex-direction: column;
  width: 300px;
  gap: 10px;
  padding: 15px;
  background-color: white;
  border-radius: 10px;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}

input[type="text"],
input[type="number"],
input[type="url"],
input[type="submit"] {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 16px;
}

input[type="submit"] {
  background-color: #95651d;
  color: white;
  cursor: pointer;
  transition: background-color 0.3s;
}

input[type="submit"]:hover {
  background-color: #1f1801;
}

#profliedata {
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 20px;
}

#profliedata div {
  padding: 15px;
  border-radius: 10px;
  background-color: white;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
  text-align: center;
}

#profliedata img {
  height: 150px;
  object-fit: cover;
  border-radius: 8px;
}

#profliedata button {
  margin: 5px;
  padding: 8px 12px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-weight: bold;
  color: white;
}

#profliedata button:first-of-type {
  background-color: #970505; /* Delete */
}

#profliedata button:last-of-type {
  background-color: #2ea3f1; /* Update */
}
