/* General Body Styles */
body {
    font-family: Arial, sans-serif;
    direction: rtl; /* Ensures all text and layout are in RTL direction */
    margin: auto;
    padding: auto;
	background-color: silver;	
}

.block-max-width {
	width: 100%;
}

.block-top-header {
	width: 100%;
    background-color: navy;	
    color: white;
}

.block-sub-header {
	width: 100%;
    background-color: orange;	
    color: black;
}

.block-table {
	width: 100%;
    background-color: silver;
}

.block-table-header {
	width: 100%;
    background-color: Navy;	
    color: White;
    padding: 3px;
}

.block-table-even {
	width: 100%;
    background-color: lightgray;	
}

.block-table-odd {
	width: 100%;
    background-color: rgb(188, 229, 254);	
}


.block-input-field {
    width: 60%;
    background-color: rgb(255, 255, 181);	
}


.block-buttons {
	width: 100%;
    background-color: None;	
    text-align: right;
}

.block-hide {
    display: none;    
}

.block-show {
    display: block;    
}

.block-ok-msg {
    font-family: Arial, sans-serif;
    direction: rtl; 
    padding: 1%;
	width: 100%;
    background-color: green;	
    text-align: right;
    color: white;
}

.block-err-msg {
    font-family: Arial, sans-serif;
    direction: rtl; 
    padding:1%;
	width:100%;
    background-color:red;	
    text-align:right;
    color: white;
}




