body {
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
  background-color: #fafafa;
}

/* Header */
header {
  background-color: #ed2d2d; /* ngjyrë e ngjashme me iLovePDF */
  padding: 15px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header .logo {
  color: #fff;
  font-weight: bold;
  font-size: 20px;
  text-decoration: none;
}
header .nav-links a {
  color: #fff;
  text-decoration: none;
  margin-left: 20px;
  font-size: 14px;
}

/* Kontejneri kryesor */
.container {
  max-width: 900px;
  margin: 40px auto;
  padding: 20px;
  background-color: #fff;
  border-radius: 6px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
  text-align: center;
}
.container h1 {
  color: #ed2d2d;
  margin-bottom: 20px;
  font-weight: 400;
}

/* Zona e ngarkimit */
.upload-area {
  border: 2px dashed #ccc;
  border-radius: 6px;
  padding: 30px;
  margin-bottom: 20px;
  cursor: pointer;
  transition: border-color 0.3s;
}
.upload-area:hover {
  border-color: #ed2d2d;
}
.upload-area p {
  color: #888;
  margin: 0;
  font-size: 16px;
}
#fileInput {
  display: none; /* fsheh input-in e vërtetë të file-it */
}

/* Butonat */
.buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin: 20px 0;
  flex-wrap: wrap;
}
button {
  background-color: #ed2d2d;
  color: #fff;
  border: none;
  border-radius: 4px;
  padding: 12px 20px;
  font-size: 14px;
  cursor: pointer;
  transition: background-color 0.3s;
}
button:hover {
  background-color: #d62b2b;
}

/* Seksioni i rrotullimit */
.rotation-section {
  margin-top: 20px;
}
.rotation-section label {
  display: block;
  margin-bottom: 5px;
  font-weight: 500;
}
.rotation-section input[type="range"] {
  width: 200px;
}
.rotation-value {
  font-weight: bold;
  color: #ed2d2d;
  margin-left: 8px;
}

/* Manuali */
.manual-section {
  text-align: left;
  margin-top: 40px;
  background-color: #f8f8f8;
  padding: 20px;
  border-radius: 6px;
}
.manual-section h2 {
  color: #ed2d2d;
  margin-bottom: 15px;
}
.manual-section ol {
  margin-left: 20px;
}
.manual-section li {
  margin-bottom: 10px;
}

/* Footer */
footer {
  text-align: center;
  margin-top: 40px;
  color: #aaa;
  font-size: 14px;
}

/* Mobile Responsiveness */
@media (max-width: 600px) {
  .buttons {
    flex-direction: column;
  }
}
