body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 20px;
  background-color: #f4f4f4;
}

.container {
  max-width: 800px;
  margin: 0 auto;
  background: white;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

h1, h2 {
  text-align: center;
}

form {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}

label {
  margin-top: 10px;
  font-weight: bold;
}

input, textarea, button {
  padding: 10px;
  margin-top: 5px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 16px; /* Mencegah zoom di mobile */
}

button {
  background-color: #4CAF50;
  color: white;
  border: none;
  cursor: pointer;
  margin-top: 10px;
}

button:hover {
  background-color: #45a049;
}

#recordBtn, #stopBtn {
  width: auto;
  align-self: flex-start;
}

video {
  margin-top: 10px;
  border-radius: 4px;
}

.report-item {
  border: 1px solid #ddd;
  padding: 15px;
  margin-bottom: 15px;
  border-radius: 4px;
  background: #fafafa;
}

.edit-btn {
  background-color: #f39c12;
  color: white;
  border: none;
  padding: 8px 12px;
  cursor: pointer;
  border-radius: 4px;
}

.edit-btn:hover {
  background-color: #e67e22;
}

/* Mobile Friendly - Media Queries */
@media (max-width: 768px) {
  .container {
    padding: 10px;
    margin: 10px;
  }
  
  input, textarea, button {
    font-size: 14px;
  }
  
  video {
    max-width: 100%;
  }
  
  .report-item {
    padding: 10px;
  }
}

@media (max-width: 480px) {
  h1, h2 {
    font-size: 1.5em;
  }
  
  form {
    padding: 10px;
  }
}