/* PHOBS form CSS Document */

/*#phobs_book {*/
/*    padding: 0px;*/
/*    margin: 0px;*/
/*    font: normal 11px Arial, Helvetica, sans-serif;*/
/*    color: #000000;*/
/*    padding-left: 5px;*/
/*}*/
/*#phobs_book .booking_naslov {*/
/*    font: normal 14px Arial, Helvetica, sans-serif;*/
/*}*/
/*#phobs_book select {*/
/*    font: normal 12px Arial, Helvetica, sans-serif;*/
/*    margin-bottom: 3px;*/
/*    padding: 1px;*/
/*}*/
/*#phobs_book .destination, #phobs_book .hotel {*/
/*    width: 149px;*/
/*}*/
/*#phobs_book p {*/
/*    padding: 1px 0px;*/
/*    margin:0px;*/
/*}*/
/*#phobs_book .button {*/
/*    border: 1px solid #369;*/
/*    font: bold 12px Arial, Helvetica, sans-serif;*/
/*    color: #003399;*/
/*    background-color: #EEE;*/
/*    width: 102px;*/
/*    padding: 1px;*/
/*}*/
/*#phobs_book .access_code {*/
/*    font: normal 12px Arial, Helvetica, sans-serif;*/
/*    width: 130px;*/
/*    border: 1px solid #CCC;*/
/*}*/
/*#phobs_book a.view_cancel {*/
/*    font: normal 11px Arial, Helvetica, sans-serif;*/
/*    color: #069;*/
/*    text-decoration:none;*/
/*}*/
/*#phobs_book a.view_cancel:hover {*/
/*    text-decoration:underline;*/
/*    color: Red;*/
/*}*/




/* =========================
   PHOBS LUXURY BOOKING FORM
   ========================= */

#phobs_book {
    background: #ffffff;
    max-width: 520px;
    margin: 40px auto;
    padding: 28px 26px;
    border: 1px solid rgba(12, 57, 137, 0.12);
    box-shadow: 0 20px 60px rgba(0,0,0,0.08);
    font-family: Arial, sans-serif;
}

/* Title */
#phobs_book .booking_naslov {
    font-size: 22px;
    font-weight: 700;
    color: #0C3989;
    text-align: center;
    margin-bottom: 20px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Labels */
#phobs_book p {
    color: #0C3989;
    font-size: 13px;
    margin-bottom: 12px;
}

/* Select fields */
#phobs_book select,
#phobs_book input[type="text"] {
    width: 100%;
    padding: 12px 14px;
    margin-top: 6px;
    border: 1px solid rgba(12, 57, 137, 0.25);
    background: #fff;
    color: #0C3989;
    font-size: 14px;
    border-radius: 0px; /* sharp edges */
    outline: none;
    transition: all 0.2s ease;
}

/* Focus state */
#phobs_book select:focus,
#phobs_book input[type="text"]:focus {
    border-color: #0C3989;
    box-shadow: 0 0 0 2px rgba(12, 57, 137, 0.15);
}

/* Submit button */
#phobs_book .button {
    width: 100%;
    background: #0C3989;
    color: #ffffff;
    padding: 14px;
    border: none;
    border-radius: 0px; /* sharp edges */
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 10px;
    transition: all 0.2s ease;
}

/* Hover button */
#phobs_book .button:hover {
    background: #082a63;
}

/* Cancel link */
#phobs_book .view_cancel {
    display: block;
    text-align: center;
    margin-top: 18px;
    font-size: 12px;
    color: #0C3989;
    text-decoration: none;
    opacity: 0.8;
}

#phobs_book .view_cancel:hover {
    opacity: 1;
    text-decoration: underline;
}

/* Access code field spacing */
#phobs_book .access_code {
    margin-top: 6px;
}

