
/* Reset and base styles */
* {
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f9fbfd;
  color: #333;
  font-size: 16px;
  line-height: 1.5;
}

/* Header */
header {
  background-color: #0081C6;
  color: white;
  padding: 16px 40px;
  display: flex;
  align-items: center;
  gap: 20px;
}

header img {
  height: 40px;
}

header h1 {
  margin: 0;
  font-weight: 600;
  font-size: 1.8rem;
}

/* Main container */
main {
  max-width: 1100px;
  margin: 40px auto;
  padding: 0 20px;
}

/* Form section layout */
.form-section {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 30px;
}

.form-section label {
  display: flex;
  flex-direction: column;
  font-weight: 600;
  font-size: 1rem;
  flex: 1 1 240px;
}

.form-section input,
.form-section select,
.form-section textarea {
  font-size: 1rem;
  padding: 8px 10px;
  border: 1px solid #ccc;
  border-radius: 6px;
  margin-top: 6px;
}


/* Venue card layout */

.venue-card label {
  display: block;
  font-weight: 600;
  margin: 10px 0 6px;
}

.venue-card input,
.venue-card select,
.venue-card textarea {
  width: 100%;
  padding: 8px 10px;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 6px;
  margin-bottom: 12px;
}

.venue-card textarea {
  height: 70px;
  resize: vertical;
}

/* Action buttons */
.actions {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

button {
  background-color: #0081C6;
  color: white;
  font-weight: 600;
  font-size: 1rem;
  padding: 10px 18px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

button:hover {
  background-color: #005b96;
}

