body, html{
	margin: 0;
    padding: 0;
    direction: rtl;
}
.container, .mini-container{
    background-color: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    margin: 10px auto;
}

.container{
    max-width: 1200px;
    padding: 0px;	    
}
.container .header {
    border-bottom: 1px solid #ddd;
    display: flex;
    flex-direction: row;
    flex-wrap:nowrap;
    justify-content: space-between;
    align-items: flex-start;
    width:99%;
    height: 90px;
}


.container .header {
    background-image: var(--logo-thumb);
    background-size: contain; /* Keeps the image's original dimensions */
    background-position: center; /* Centers the image in the div */
    background-repeat: no-repeat; /* Prevents the image from repeating */
}

.container .header .main-title{
	text-align: right;
	height: 100%;
	margin: 15px 10px;
	flex: 9;
}

.container .header .main-title h3{
	padding: 0px;
	margin: 0px;
	font-size: 1.3em;
	font-weight: bold;
	
}
.container .header .main-title h4{
	padding: 0px;
	margin: 0px;
	font-size: 1.1em;	
}
.container .header .header-actions{
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	padding-top: 5px;
}

.container .header .header-actions p{
	margin: 0;
	padding:0;
	text-align: center;
	font-weight: bold;
	font-size: 0.9em;
}

.container .header .header-actions form{
display: flex;
flex-direction: row;
margin: 0 0 0 5px;
justify-content: flex-end;
}
.container .header .header-actions form a{
	color: navy;
}

.container .header .profile{
	flex-basis: 1;
	text-align: left;
}
.container .header .profile img{
	border: 1px solid #ccc;
	max-height: 100px;
}

.container .footer{
	margin-top: 20px;
	border-top: 1px solid #ccc;
	width:100%;
	text-align: center;
}
.container .footer img {
    max-width: 200px;
    margin-top: 20px;
}

.mini-container{
	max-width: 380px !important;
	padding: 20px 5px 0px;
}

.mini-container .header {
    width:100%;
}


.mini-container .header .logo {
    background-image: var(--logo-hr);
    background-size: 100%; /* Keeps the image's original dimensions */
    background-position: center; /* Centers the image in the div */
    background-repeat: no-repeat; /* Prevents the image from repeating */
    display: inline-block; /* Makes the div adjust to the size of the content */
    width:100%;
    height:70px;
}

.mini-container .header .customer-name{
	border-top: 1px solid #ccc;
	padding-top:10px;
	text-align: center;
	margin: 5px;
	
}

.mini-container .title{
	text-align: center;
	border-top: 1px solid #ccc;
	border-bottom: 1px solid #ccc;
	font-size: 0.95em;
	padding: 5px;
}


.mini-container label {
    display: block;
    margin: 0px 0 5px;
    font-size: 14px;
    color: #555;
    text-align: right;
    padding-right:10px;
    padding-top: 0px;
}

/* Input Styles */
.mini-container input[type="text"], .mini-container input[type="password"] {
    width: calc(100% - 20px);
    padding: 10px;
    margin-bottom: 5px;
    border: 1px solid #dfe3e8;
    border-radius: 4px;
    font-size: 14px;
    color: #333;
}


.mini-container input[type="text"]:focus,.mini-container input[type="password"]:focus {
    border-color: #0056b3;
    outline: none;
    box-shadow: 0 0 5px rgba(0, 86, 179, 0.5);
}

.mini-container .footer{
	margin-top: 10px;
	border-top: 1px solid #ccc;
	width:100%;
	text-align: center;
}
.mini-container .footer img {
    max-width: 200px;
    margin-top: 20px;
}

.mini-container a{
	padding: 10px;
}

.container .actions, .mini-container .actions{
	text-align: center;
	padding: 5px;
}

.menu-form{
	display: flex;
	flex-direction: row;
	width:100%;
	justify-content: space-between;
	padding-left: 20px ;
	border-bottom: 1px solid #ccc;
	margin: 0px;
}

.menu-form .ui-menu{
	border:none;
	font-size: 1.2em;
}	
.menu-form .ui-menu .ui-menuitem-text{
	font-weight: bold;	
	color: #0056b3!important;	
}

.menu-form .ui-menu a{
}
.menu-form p{
	margin: 0;
	padding:0;
	float:left;
	font-family: serif;
}

.content{
	padding: 0px 20px;
}

.content h3{
	font-size: 16px;
    color: #0056b3;
    font-weight: 600;
    margin: 0;
}
.actions{
	display: flex;
	flex-direction: row;
	justify-content:center;
	margin: 10px;
	padding: 5px;
	text-align: center;
	margin: auto;
	border-top: 1px solid #ccc;
}

.actions .button{
margin: 2px;
}

@media only screen and (max-width: 800px) {
	.container {
		max-width: 100%!important;
	}
	.container .header{
		flex-direction: column!important;
		justify-content: center;
		align-items: center;
		height: auto!important;
		flex-wrap: wrap!important;
		background-position: top center;
		background-size: 70px;
	}
	.container .header .main-title{
		flex: 1!important;
		padding-top: 80px;
		text-align: center;
		
	}
	.container .header .profile{
	}
	.container .header .header-actions{
	}
	
	.student-info{
		flex-wrap: wrap!important;
	}
	.student-info .info-box{
		width: 250px!important;
	}

	.course-info div{
		text-align: center!important;
		width: 100%;
	}
}