.tent-quotation{
    max-width:600px;
    margin:20px auto;
    padding:20px;
    border:2px solid #ddd;
    border-radius:10px;
    font-family:Arial, sans-serif;
    background:#fff;
    box-shadow:0 4px 8px rgba(0,0,0,0.05);
}

.tq-row{
    display:flex;
    flex-wrap:wrap;
    margin-bottom:15px;
    gap:10px;
}

.tq-col{
    flex:1;
    min-width:120px;
}

label{
    display:block;
    font-weight:bold;
    margin-bottom:5px;
}

input[type="text"], select{
    width:100%;
    padding:8px;
    border:1px solid #ccc;
    border-radius:5px;
    box-sizing:border-box;
}

#custom-tent-checkbox{
    display:inline-block;
    margin-right:8px;
}

label[for="custom-tent-checkbox"]{
    display:inline-flex;
    align-items:center;
    gap:5px;
    cursor:pointer;
}

.tq-yes-no{
    margin-right:5px;
    margin-top:5px;
    margin-bottom:5px;
    padding:6px 12px;
    border:none;
    background:#0073aa;
    color:#fff;
    border-radius:5px;
    cursor:pointer;
    transition:background 0.3s;
}

.tq-yes-no:hover{
    background:#005177;
}

#tq-whatsapp{
    background:#25D366;
    color:#fff;
    padding:10px 15px;
    border:none;
    border-radius:5px;
    cursor:pointer;
    font-weight:bold;
    font-size:16px;
    width:100%;
    margin-top:15px;
    transition:background 0.3s;
}

#tq-whatsapp:hover{
    background:#1DA851;
}

#tq-summary p{
    margin:5px 0;
    font-weight:500;
}

.tq-section{
    margin-top:10px;
    padding:10px;
    background:#f9f9f9;
    border-radius:5px;
    border:1px solid #eee;
}

/* Responsive for mobile */
@media(max-width:600px){
    .tq-row{
        flex-direction:column;
    }
    .tq-col{
        min-width:100%;
    }
    #tq-whatsapp{
        font-size:14px;
    }
}
