a.button {
    background-color: #007bff;
    color: white;
    padding: 6px 12px;
    text-decoration: none;
    border-radius: 4px;
}

.button {
    background-color: #007bff;
    color: white;
    padding: 6px 14px;
    text-decoration: none;
    border-radius: 6px;
    display: inline-block;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.button:hover {
    background-color: #0056b3;
}


/* Form container */
form {    
    padding: 10px;
    max-width: 500px;    
    border-radius: 12px;    
    margin: auto;
}

/* Form inputs */
form input[type="text"],
form input[type="password"],
form input[type="number"],
form input[type="date"],
form input[type="time"],
form select {
    width: 100%;
    padding: 10px;
    margin-top: 5px;
    margin-bottom: 10px;
    border-radius: 6px;
    border: 1px solid #ccc;
    box-sizing: border-box;
}
form input[type="file"] {
  cursor:pointer;
  background: #d9e9f9;
  color: #166df4;
  padding: 10px;
  border-radius: 15px;
  margin: 10px;
}

/* Submit buttons */
form button {
    background-color: #007bff;
    color: white;
    padding: 10px 16px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

form button:hover {
    background-color: #0056b3;
}

/* Headings */
form h2 {
    margin-top: 0;
}

/* Success and error messages */
.success {
    color: green;
    margin-top: 10px;
}
.error{
    color: red;
    margin-top: 10px;
}

.vehicle-details h3 {
    margin-top: 0;
    color: #007bff;
}
.vehicle-details img {
  max-height: 150px;
  max-width: 100%;
  margin-top: 10px;
  
}

.book_vehicle {
  max-width: 500px;
  margin: auto;
  margin-bottom: 15px; 
  border: 1px solid #ccc;  
  border-radius: 8px;
  max-width: 500px;
  margin: auto;
  padding: 20px;
  background:#ddf3ff;
}
.book_vehicle h2{
  color: black;
  background: #fff;
  padding: 5px;
  border-radius: 10px;
  text-align: center;
}

.danger-button {
    background-color: #dc3545;
    color: white;
    padding: 6px 12px;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    cursor: pointer;
    margin-left: 5px;
}

.danger-button:hover {
    background-color: #b02a37;
}


