/* sell-style.css */
body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f0f8ff; /* Light Cyan background */
    color: #333; /* Dark Text color */
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
  }
  
  .sell-container {
    text-align: left;
    max-width: 800px;
    padding: 20px;
    background-color: #fff; /* White background */
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
  }
  
  .sell-title {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 20px;
    color: #007acc; /* Blue text color for title */
  }
  
  form {
    display: flex;
    flex-direction: column;
  }
  
  label {
    margin-bottom: 5px;
    font-style: italic; /* Italic style for labels */
  }
  
  input {
    margin-bottom: 15px;
    padding: 10px;
    box-sizing: border-box;
    border: 1px solid #007acc; /* Blue border for input fields */
    border-radius: 5px;
  }
  
  button {
    background-color: #007acc; /* Blue background color for button */
    color: #fff; /* White text color */
    padding: 12px 15px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
  }
  
  button:hover {
    background-color: #005580; /* Darker blue on hover */
  }
  
  .notes {
    margin-top: 20px;
    padding: 15px;
    background-color: #f0f8ff; /* Light Cyan background for notes */
    border: 1px solid #007acc; /* Blue border for notes */
    border-radius: 8px;
    color: #007acc; /* Blue text color for notes */
  }
  
  .image-container {
    margin-top: 20px;
  }
  
  /* Adjust the image size as needed */
  .image-container img {
    max-width: 100%;
    height: auto;
    border-radius: 5px;
  }
  