<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* Table Styling */
#servicequeue .container {
    margin-top: 30px;
}

#servicequeue table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

#servicequeue th, #servicequeue td {
    padding: 12px 15px;
    text-align: left;
    border: 1px solid #ddd;
}

#servicequeue th {
    background-color: #f8f9fa;
    color: #333;
    font-weight: bold;
}

#servicequeue td {
    background-color: #ffffff;
    color: #555;
}

#servicequeue tr:nth-child(even) {
    background-color: #f2f2f2;
}

#servicequeue tr:hover {
    background-color: #e9ecef;
}

/* Button Styling */
button {
    background-color: #007bff;
    color: white;
    padding: 6px 12px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
}

button:hover {
    background-color: #0056b3;
}

button:active {
    background-color: #003366;
}

/* Action Forms */
form input, form select, form button {
    margin-bottom: 8px;
    padding: 10px;
    width: 100%;
    border: 1px solid #ddd;
    border-radius: 4px;
}

form input[type="number"], form input[type="text"], form input[type="datetime-local"], form select {
    width: calc(100% - 22px); /* Adjust width for input fields */
}

/* Section Heading */
#servicequeue .section-heading h4 {
    font-size: 28px;
    color: #333;
    font-weight: bold;
}

#servicequeue .section-heading .line-dec {
    width: 100px;
    height: 2px;
    background-color: #007bff;
    margin: 10px 0;
}

/* Add some spacing between table and forms */
#servicequeue td form {
    margin-top: 10px;
}

/* Admin Action Section */
#servicequeue td form input[type="text"],
#servicequeue td form input[type="datetime-local"],
#servicequeue td form select {
    width: 45%;
    display: inline-block;
    margin-right: 10px;
}

/* Make sure the forms are aligned properly */
@media (max-width: 768px) {
    #servicequeue td form input[type="text"],
    #servicequeue td form input[type="datetime-local"],
    #servicequeue td form select {
        width: 100%;
        margin-right: 0;
    }
}</pre></body></html>