/* Boat Open Dag Booking – Frontend */
.bodb-booking {
    max-width: 560px;
    margin: 0 auto;
    padding: 20px;
}
.bodb-field {
    margin-bottom: 16px;
}
.bodb-field label {
    display: block;
    font-weight: 600;
    margin-bottom: 4px;
    font-size: 14px;
}
.bodb-field .bodb-optional {
    font-weight: 400;
    color: #777;
    font-size: 13px;
}
.bodb-field input,
.bodb-field select {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 15px;
    box-sizing: border-box;
}
.bodb-field input:focus,
.bodb-field select:focus {
    border-color: #0073aa;
    outline: none;
    box-shadow: 0 0 0 1px #0073aa;
}
.bodb-button {
    display: inline-block;
    padding: 12px 28px;
    background: #0073aa;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background .2s;
}
.bodb-button:hover {
    background: #005f8d;
}
.bodb-button:disabled,
.bodb-vol .bodb-submit-btn {
    background: #aaa;
    cursor: not-allowed;
    pointer-events: none;
    opacity: 0.7;
}
#bodb-messages .bodb-error {
    background: #fce4e4;
    border: 1px solid #f5aca6;
    color: #a94442;
    padding: 12px 16px;
    border-radius: 4px;
    margin-bottom: 16px;
}
.bodb-success {
    background: #e8f5e9;
    border: 1px solid #a5d6a7;
    color: #2e7d32;
    padding: 16px 20px;
    border-radius: 4px;
}
.bodb-no-sailings {
    color: #666;
    font-style: italic;
}
.bodb-sailing-info {
    background: #f0f6fc;
    border: 1px solid #c3d9ed;
    border-radius: 4px;
    padding: 14px 18px;
    margin-bottom: 18px;
    line-height: 1.6;
}
.bodb-sailing-info .bodb-avail {
    color: #0073aa;
    font-size: 13px;
}
