/*body {
	font-family: 'Arial', sans-serif;
	direction: rtl;
	text-align: right; 
	background-color:#91a3b0;
	margin: 0;
	padding: 20px;
}*/

body{
	/*background-color:#91a3b0 !important;*/
	background-color:#fff !important;
}

.containerdoc {
	max-width: 800px;
	margin: 0 auto;
	margin-top:26px;
	padding: 20px;
	background-color: #fff;
	border-radius: 8px;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

h2 {
	text-align: center;
	color: #333;
}

.form-group-doc {
	margin-bottom: 20px;
}

label {
	display: block;
	font-weight: bold;
	margin-bottom: 5px;
	color: #555;
	text-align:right;
}

input[type="text"], input[type="password"] {
	width: 100%;
	padding: 12px;
	border: 1px solid #ccc;
	border-radius: 4px;
	font-size: 16px;
	color: #555;
	background-color: #f9f9f9;
	text-align:right;
}

input[type="submit"] {
	width: 100%;
	padding: 14px;
	border: none;
	border-radius: 4px;
	background-color: #007bff;
	color: white;
	font-size: 16px;
	cursor: pointer;
}

input[type="submit"]:hover {
	background-color: #45a049;
}

.error-message {
	color: red;
	text-align: center;
	font-weight: bold;
}

table {
	width: 100%;
	border-collapse: collapse;
	margin-top: 20px;
}

table, th, td {
	border: 1px solid #ddd;
}

th, td {
	padding: 12px;
	text-align: center;
}

th {
	/*background-color: #f2f2f2;*/
	background-color:#0000CD;
	color: #555;
}

td {
	background-color: #fff;
	color: #333;
}

h3 {
	text-align: center;
	color: #333;
	margin-top: 40px;
}


.error-box {
    background-color: #f8d7da; 
    color: #721c24; 
    padding: 15px 20px; 
    border: 1px solid #f5c6cb;  
    border-radius: 8px; 
    font-size: 16px; 
    font-weight: bold; 
    width: fit-content; 
    max-width: 80%; 
    display: flex;
    align-items: center; 
    justify-content: space-between; 
    transition: opacity 0.5s ease-in-out;
    position: absolute;
    top: 20%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.error-box span {
    text-align: center;
    flex: 1; 
}

#closeErrorBox {
    background: none;
    border: none;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    color: #721c24;
    margin-left: 15px;
}


.table-container {
	margin-top: 20px;
	display: flex;
	justify-content: center;
}

.styled-table {
	width: 90%;
	max-width: 900px;
	border-collapse: collapse;
	border-radius: 10px;
	overflow: hidden;
	background: white;
	box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.15);
}

.styled-table th, .styled-table td {
	padding: 12px;
	text-align: center;
	border-bottom: 1px solid #ddd;
}


.styled-table th {
	background: #007bff;
	color: white;
	font-size: 16px;
}


.styled-table tr:hover {
	background-color: #f1f1f1;
}


.styled-table td {
	font-size: 14px;
}

.back_center-container {
    display: flex;
    justify-content: center;
    margin-top: 100px;
}


.btn-back {
    display: inline-block;
    background-color: red; 
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    font-size: 18px;
    border-radius: 5px;
    font-weight: bold;
    transition: background 0.3s ease;
}

.btn-back:hover {
    /*background-color: darkred;*/
	background-color:#45a049;
	color:#fff;
}

.last-updated {
    color: red;
    font-size: 18px;
    font-weight: bold;
    padding: 10px 20px;
    border: 2px solid red;
    border-radius: 8px;
    background-color: #ffe6e6; 
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    /*top: 10%;*/
    left: 50%;
    transform: translate(-50%, -50%);
}


.custom_nav-container .navbar-nav .nav-item .nav-link {
  padding: 0px 11px !important;
  font-size: 1.0rem !important;
}


/* Default: show desktop, hide mobile */
.desktop-view {
    display: block;
}
.mobile-view {
    display: none;
}


/* On small screens (phones/tablets in portrait) */
@media screen and (max-width: 820px) {
    .desktop-view {
        display: none !important;
    }
    .mobile-view {
        display: block !important;
		transform: scale(0.85) !important;
		padding-bottom: 10px !important;
		/*overflow-x: auto !important;
		-webkit-overflow-scrolling: touch !important;*/
		font-size: 0.75rem !important;
		
    }
}

/*
@media screen and (max-width: 850px) {

	.mobile-view {
        display: block;
		transform: scale(0.85);
        transform-origin: top center;
        width: 100%;
        overflow-x: auto;
		padding-bottom: 10px;
   		 -webkit-overflow-scrolling: touch;
    }

    .zoom-out-on-mobile {
        transform: scale(0.85);
        transform-origin: top center;
        width: 100%;
        overflow-x: auto;
		padding-bottom: 10px;
    	
    }
}*/




