
.inline-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
}



.horizontal-line {
    width: 100%;
    height: 1.5px;
    background-color: #ddd;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    margin-top: 10px;
}

.center-text {
    text-align: center;
}

.responsive-logo {
    width: 70%;
    max-width: 300px;
    height: auto;
}

.responsive-img {
    width: 25%;
    max-width: 500px;
    height: auto;
}

.responsive-img-50 {
    width: 50%;
    max-width: 500px;
    height: auto;
}

.card {
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 16px;
    margin-bottom: 16px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.card-header {
    font-weight: bold;
    margin-right: 8px;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
}

.card-content {
    margin-top: 10px;
}







  /* Responsive design adjustments */
        @media (max-width: 768px) {
            table {
                font-size: 12px;
            }
            th, td {
                padding: 8px;
            }
            .note-input {
                width: 100%;
            }
            .action-buttons {
                flex-direction: column;
            }
            .action-buttons button {
                width: 100%;
                margin-bottom: 5px;
            }
        }

        /* General styling */
        .note-input {
            width: 150px;
        }
        .action-buttons {
            display: flex;
            justify-content: center;
            gap: 5px;
        }

        .icon-button {
            padding: 4px 8px;
            font-size: 14px;
            border-radius: 4px;
            color: #4b5563; /* Tailwind gray-600 */
        }

        .icon-button:hover {
            background-color: #e5e7eb; /* Tailwind grey-200 */
        }

        /* Ensure buttons fit on smaller screens */
        @media (max-width: 640px) {
            .note-input {
                width: 100px;
            }
            .action-buttons {
                flex-direction: column;
            }
            .action-buttons button {
                width: 100%;
            }
        }

        /* Specific Button Styles */
        .mark-ready-button {
            background-color: #10b981; /* Tailwind green-500 */
            color: white;
            margin-left: 8px;
            border: none; /* Remove internal border */
        }

        .mark-ready-button:hover {
            background-color: #059669; /* Tailwind green-600 */
        }

        .show-qr-button {
            background-color: #e5e7eb; /* Tailwind yellow-500 is #f59e0b */
            color: black;
            margin-left: 8px;
            border: none; /* Remove internal border */
        }

        .show-qr-button:hover {
            background-color: #d1d5db; /* Tailwind yellow-600 */
        }

        .delete-button {
            background-color: #ef4444; /* Tailwind red-500 */
            color: white;
            border: none; /* Remove internal border */
        }

        .delete-button:hover {
            background-color: #dc2626; /* Tailwind red-600 */
        }

        /* Ensure buttons align properly in cells */
        .status-cell, .order-cell {
            display: flex;
            align-items: center;
            justify-content: center;
            border: none; /* Remove internal border */
        }

        /* Remove internal borders */
        td .icon-button,
        .status-cell form,
        .order-cell form {
            border: none;
        }
        
        
        /* Settings.php: */
        
         @media (max-width: 768px) {
            table {
                font-size: 12px
            }

            td,
            th {
                padding: 8px
            }
        }

        .icon-button {
            padding: 4px 8px;
            font-size: 14px;
            border-radius: 4px;
            color: #4b5563;
        }

        .icon-button:hover {
            background-color: #e5e7eb
        }

        .button {
            background-color: #3b82f6;
            color: #fff;
            padding: 8px 16px;
            border-radius: 4px;
            text-align: center;
            cursor: pointer;
        }

        .button:hover {
            background-color: #2563eb;