.wpv-tribe-single-media .date-price {
    display: none!important;
}
.wpv-tribe-single-media .time {
    display: none!important;
}
.wpv-tribe-single-media no-image {
display: none!important;
}
/* Reduce space above the specific WPForm with ID 58023 */
#wpforms-58023 {
   margin-top: -1em !important;
}/* --- Responsive Negative Margin for Form 58023 --- */

/* 1. This is the default style for MOBILE devices */
#wpforms-58023 {
   margin-top: -.5em !important; /* A smaller negative margin for mobile */
}

/* 2. This applies only to screens WIDER than 768px (tablets and desktops) */
@media (min-width: 768px) {
  #wpforms-58023 {
    margin-top: -.5em !important; /* The original, larger negative margin */
  }
}
/* Google Fonts for 'Inter' font */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

body {
    font-family: 'Inter', sans-serif;
    background-color: #f0f4f8; /* Light blue-gray background */
}
.container {
    max-width: 800px;
    margin: 2rem auto;
    padding: 1.5rem;
    background-color: #ffffff;
    border-radius: 1.5rem; /* More rounded corners */
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}
.button-primary {
    background-color: #2563eb; /* blue-600 */
    color: #ffffff;
    font-weight: 600;
    padding: 0.5rem 1.5rem; /* py-2 px-6 */
    border-radius: 0.75rem; /* rounded-xl */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* shadow-md */
    transition: background-color 0.3s ease-in-out;
}
.button-primary:hover {
    background-color: #1d4ed8; /* blue-700 */
}
.button-primary:disabled {
    background-color: #9ca3af; /* gray-400 */
    cursor: not-allowed;
}
.button-secondary {
    background-color: #e5e7eb; /* gray-200 */
    color: #374151; /* gray-800 */
    font-weight: 600;
    padding: 0.5rem 1.5rem; /* py-2 px-6 */
    border-radius: 0.75rem; /* rounded-xl */
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05); /* shadow-sm */
    transition: background-color 0.3s ease-in-out;
}
.button-secondary:hover {
    background-color: #d1d5db; /* gray-300 */
}
.radio-option {
    display: flex;
    align-items: center;
    padding: 1rem; /* p-4 */
    margin-bottom: 0.75rem; /* mb-3 */
    border: 1px solid #e5e7eb; /* border-gray-200 */
    border-radius: 0.5rem; /* rounded-lg */
    cursor: pointer;
    transition: background-color 0.2s ease-in-out;
}
.radio-option:hover {
    background-color: #eff6ff; /* blue-50 */
}
.radio-option input[type="radio"] {
    height: 1.25rem; /* h-5 */
    width: 1.25rem; /* w-5 */
    color: #2563eb; /* text-blue-600 */
    border-color: #d1d5db; /* border-gray-300 */
    margin-right: 0.75rem; /* mr-3 */
    /* Tailwind's focus:ring-blue-500 is handled by the framework, but for direct CSS: */
    /* outline: none; */
    /* box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.5); */
}
.radio-option.selected {
    background-color: #dbeafe; /* blue-100 */
    border-color: #60a5fa; /* blue-400 */
}
.form-input {
    margin-top: 0.25rem; /* mt-1 */
    display: block;
    width: 100%;
    padding: 0.5rem 1rem; /* px-4 py-2 */
    border: 1px solid #d1d5db; /* border-gray-300 */
    border-radius: 0.5rem; /* rounded-lg */
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05); /* shadow-sm */
    outline: none;
    /* Tailwind's focus:ring-blue-500 focus:border-blue-500 is handled by the framework, but for direct CSS: */
    /* focus-ring-color: #3b82f6; */
    /* focus-border-color: #3b82f6; */
}
.hidden {
    display: none;
}
/* Utility classes for flex, text alignment, margins, etc., are assumed to be provided by Tailwind CSS. */
/* If Tailwind is not loaded, these would need to be manually added or replaced with equivalent CSS. */
@media (min-width: 769px) {
  .pr-5 {
    padding-right: 50px;
  }
}