@import url('https://fonts.googleapis.com/css2?family=Amiri&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@300;400;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Almarai:wght@300;400;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Tajawal:wght@300;400;500;700;800&display=swap');
/* General Styles */
body, html {
    font-family: 'Cairo', sans-serif;
    background-color: #f5f8fa;
    color: #333;
    direction: rtl;
}

h2, h3 {
    color: #0056b3;
    font-family: 'Cairo', sans-serif;
}

h2 {
    font-size: 24px;
    font-weight: bold;
}

h3 {
    font-size: 20px;
    font-weight: normal;
}


a {
	font-family: 'Tajawal', sans-serif;
    color: #0056b3;
    text-decoration: none;
    font-size: 14px;
    font-weight: 350;
}

a:hover {
    text-decoration: underline;
}

p {
	font-family: 'Tajawal', sans-serif;
}

.errors li{
	color: red;
	font-size: 0.8em!important;	
}

/* Buttons */
.button {
    padding: 10px 15px;
    background-color: #0056b3;
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-size: 14px;
    text-align: center;
    transition: background-color 0.3s ease;
}

.button:hover {
    background-color: #003d80;
}

.button.disabled{
	background-color: #ccc;
	margin: 0 3px;
}

.button.disabled:hover {
	background-color: #ccc;
}
.pass,.good{
	margin: 2px;
	color: green;
	font-weight: 550;
}
.fail,.bad{
	margin: 2px;
	color: #d9534f; /* Bright red color for emphasis */
	font-weight: 550;
	text-align: center;
}
.warning{
	margin: 2px;
	color: orange; /* Bright red color for emphasis */
	font-weight: 550;
}
.important{
	margin: 2px;
    color: #d9534f; /* Bright red color for emphasis */
    font-weight: bold; /* Optional: Make the text bold */
}

.build{
	border-top: 1px solid #ccc;
	font-size: 0.9em;
	color: #ccc;
}