.field-trip-container {
    position: relative; /* Ensures the price-section is positioned relative to this container */
}

.price-section {
    position: absolute; /* Absolute positioning */
    top: 10px; /* Distance from the top of the container */
    right: 10px; /* Distance from the right of the container */
    font-size: 16px;
    color: #ff4d4d; /* Pink-red color for small text */
    font-family: 'Arial Rounded MT Bold', sans-serif; /* Rounder, fuller font */
    font-weight: bold; /* Added weight for emphasis */
}

#field-trip-title {
    font-size: 17px;
    color: red;
    font-family: 'Arial Rounded MT Bold', sans-serif; /* Rounder, fuller font */
    
}

#editable-title {
    font-size: 32px;
    color: #333;
    font-family: 'Bubblegum Sans', sans-serif; /* Bubbly, rounded font */
    font-style: italic; /* Added italic for distinction */
   /* text-transform: uppercase; /* Added uppercase for further differentiation */
}
