html, body {
  min-height: 100%;
  width: 100%;
  margin: 0;
  padding: 0;
  background-color: #000000;
  color: white;
  font-family: Arial, sans-serif;
  font-size: 24px;
  overflow-x: hidden;
}

.initial-view {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  transition: opacity 0.5s ease-in-out;
}

.main-layout {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  padding: 20px;
  box-sizing: border-box;
}

.posting-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    backdrop-filter: blur(5px);
}

.posting-form {
    background: #1a1a1a;
    padding: 30px;
    border-radius: 8px;
    width: 80%;
    max-width: 800px;
    max-height: 90vh;
    overflow-y: auto;
    color: white;
}

.category-section {
    margin-bottom: 20px;
}

.category-title {
    color: #4FB3FF;
    margin-bottom: 10px;
}

.category-list {
    list-style: none;
    padding: 0;
}

.category-list li {
    margin: 5px 0;
}

.category-list label {
    color: white;
    cursor: pointer;
    display: block;
    padding: 5px 0;
}

.category-list label:hover {
    color: #4FB3FF;
}

.category-list input[type="radio"] {
    margin-right: 8px;
}

.post-button {
    background: #4FB3FF;
    color: black;
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
}

.post-button:hover {
    background: #3d8fcc;
}


.step {
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.posting-form input[type="text"],
.posting-form input[type="email"],
.posting-form input[type="tel"],
.posting-form select,
.posting-form textarea,
.form-input {
    width: 100%;
    padding: 8px;
    margin: 5px 0;
    background: #2a2a2a;
    border: 1px solid #3a3a3a;
    color: white;
    border-radius: 4px;
}

.posting-form textarea {
    height: 150px;
    resize: vertical;
}

.posting-form button {
    background: #4FB3FF;
    color: black;
    border: none;
    padding: 10px 20px;
    margin: 5px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
}

.button-group {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
}

.posting-form button:hover {
    background: #3d8fcc;
}

.posting-form label {
    display: block;
    margin: 5px 0;
    color: #ccc;
}

.posting-form h2 {
    color: #4FB3FF;
    margin-bottom: 20px;
}

.posting-type-select {
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    background: #2a2a2a;
    border: 1px solid #3a3a3a;
    color: white;
    border-radius: 4px;
}

.radio-group {
    margin: 10px 0;
}

.radio-label {
    display: block;
    margin: 8px 0;
    cursor: pointer;
}

.radio-label input[type="radio"] {
    margin-right: 8px;
}

.form-group {
    margin-bottom: 20px;
}

.form-subgroup {
    margin: 10px 0;
}

.location-details {
    margin-top: 10px;
}

.location-details input {
    margin-bottom: 10px;
}

.checkbox-group {
    margin: 5px 0;
}

.checkbox-group label {
    margin-right: 15px;
}