/* service_ticket.css */

body {
    font-family: Arial, sans-serif;
    font-size: 12px;
    margin: 0;
    padding: 0;
}

@media print {
    body {
        margin: 0;
        padding: 0;
        size: A5 portrait;
    }
}

.container {
    max-width: 21cm;
    margin: 0 auto;
    padding: 20px;
    border: 1px solid #ccc;
    text-align: center;
    box-sizing: border-box;
    margin-top: 20px; /* Add margin-top to create space between the navigation bar and content */
}

table {
    width: 100%;
    margin-bottom: 10px;
}

table,
th,
td {
    border: 1px solid #ccc;
    border-collapse: collapse;
    padding: 5px;
}

th {
    background-color: #f2f2f2;
    text-align: left;
}

input[type="text"] {
    width: calc(100% - 20px);
    margin: 5px 10px;
    padding: 5px;
    border: 1px solid #ccc;
    height: 20px; /* Reduced height */
}

button {
    padding: 8px 16px;
    background-color: #007bff;
    color: white;
    border: none;
    cursor: pointer;
    margin-top: 10px;
}

button:hover {
    background-color: #0056b3;
}

.logo {
    float: left;
    margin-right: 20px;
    margin-top: -40px;
}

/* Reduce line height for the service list */
table.service-list {
    line-height: 1.2;
}
