/* כפתורי הזמנת מלצר לשולחן  */
/* מדובר בגרסה הראשונה (יהיו עוד) */
/* 23 בספטמבר 2024 */

        .srvBTNs {
            display: none;
        }
        .button-containerSRV {
            text-align: center;
        }
        
		.buttonSRV {
		    padding: 10px 30px;
		    font-size: 15px;
		    margin: 10px;
		    cursor: pointer;
		    border: none;
		    border-radius: 5px;
		    color: white;
		}
        [data-srvBTN-id="waiter-button"] {
            background-color: #4CAF50;
        }
        [data-srvBTN-id="bill-button"] {
            background-color: #008CBA;
        }
        [data-srvBTN-id="monitor"] {
            display: none;
        }
        .modalSRV {
            display: none;
            position: fixed;
            z-index: 1000;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            overflow: auto;
            background-color: rgba(0,0,0,0.7);
        }
        .modal-contentSRV {
            background-color: #fefefe;
            margin: 15% auto;
            padding: 20px;
            border: 1px solid #888;
            width: 80%;
            max-width: 400px;
            border-radius: 5px;
            text-align: center;
        }
        .modal-buttonsSRV {
            margin-top: 20px;
        }
        .modal-buttonsSRV .buttonSRV {
            margin: 0 10px;
            padding: 10px 20px;
        }
        [data-srvBTN-id="sendRequest"] {
            background-color: #4CAF50;
            color: white;
        }
        [data-srvBTN-id="sendRequest"]:disabled {
            background-color: #cccccc;
            cursor: not-allowed;
        }
        [data-srvBTN-id="cancelRequest"] {
            background-color: #f44336;
            color: white;
        }
        [data-srvBTN-id="tableNumberInput"] {
            margin-top: 10px;
            padding: 5px;
            width: 100px;
        }

/* איפיון אחיד לכפתורים */
		.DHsbBTNs {
		    background-color: #df7612;
		    border: solid white 4px;
		    border-radius: 40px;
		}
