body{
    font-family: Arial, sans-serif;
    font-size:12px;
    margin:0;
    padding:0;
}
.hotel-bill-preview{
    max-width:800px;
    margin:auto;
    padding:10px 15px;
}

/* ===== HEADER (NO FONT CHANGE) ===== */
.bill-header{
    display:flex;
    gap:15px;
    align-items:center;
}
.bill-header img{width:100px;}
.bill-header h3{font-size:24px;margin:0;}
.bill-header p{font-size:14px;margin:0;}
.gst-section{font-size:12px;}

/* ===== BILL INFO TABLE ===== */
.bill-info-table{
    width:100%;
    border-collapse:collapse;
    margin-bottom:10px;
    border:1px solid #ccc !important;
}
.bill-info-table td{
    border:1px solid #ccc !important;
    padding:4px 6px;
    vertical-align:top;
}
.bill-info-table strong{
    display:inline-block;
    min-width:90px;
}

/* Guest address fix */
.guest-address{
    white-space:normal;
    word-break:break-word;
}

/* ===== COMMON TABLE ===== */
table{
    width:100%;
    border-collapse:collapse;
    font-size:12px;
}
th,td{
     border:1px solid #ccc;
    padding:4px 6px;
}
th{
    background:#475c6c;
    color:#fff;
}

/* ===== SIGNATURE ===== */
.signature-section{
    display:flex;
    gap:150px;
    margin-top:20px;
}
.signature-box img{height:60px;}

