body, html {
  height: 100%;
  margin: 0;
  font-family: Arial, sans-serif;
}

.container {
  text-align: center;
  position: relative;
  top: 50%;
  transform: translateY(-50%);
}

h1 {
  font-size: 2em;
  color: #333;
}

/* Add this to your styles.css if not already present */
.offer-slider {
    position: fixed;
    top: 0;
    right: -400px;
    width: 350px;
    height: 100%;
    background: white;
    box-shadow: -2px 0 5px rgba(0,0,0,0.2);
    padding: 20px;
    transition: right 0.3s ease;
    overflow-y: auto;
    z-index: 1000;
}

.offer-slider.active {
    right: 0;
}

.offer-form {
    display: flex;
    flex-direction: column;
}

.offer-form label {
    margin-top: 10px;
    margin-bottom: 5px;
    font-weight: bold;
}

.offer-form input,
.offer-form textarea {
    padding: 8px;
    margin-bottom: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.offer-form input[type="submit"] {
    background-color: #4CAF50;
    color: white;
    border: none;
    cursor: pointer;
    padding: 10px;
    margin-top: 10px;
}

.offer-form input[type="submit"]:hover {
    background-color: #45a049;
}

#makeOfferBtn {
    background-color: #4CAF50;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    cursor: pointer;
    margin-top: 20px;
}

#makeOfferBtn:hover {
    background-color: #45a049;
}
.alert {
  position: fixed;
  top: 20px;
  right: 20px;
  padding: 15px;
  border-radius: 5px;
  z-index: 1000;
}

.alert-success {
  background-color: #d4edda;
  color: #155724;
  border-color: #c3e6cb;
}

.alert-danger {
  background-color: #f8d7da;
  color: #721c24;
  border-color: #f5c6cb;
}
.alert-warning {
  background-color: #ffeeba;
  color: #856404;
  border-color: #ffeeba;
}
