body {
    text-align: center;
    direction: rtl;
    height: 99vh;
    margin:0;
}

h1, h2, h3, h4, h5, h6 {
    color:orange;
}

.container {
    background-color: green;
    text-align: center;
    overflow: auto;
    margin: 0 auto;
    direction: rtl;
    height: 100vh;
}

.subcontainer {
    direction: ltr;
    width: 500px;
    margin: 0 auto;
}

.content {
    direction: ltr;
    width: 300px;
    color: white;
    border-radius: 5px;
    text-align: left;
    padding: 10px;
    overflow: auto;
    margin: 0 auto;
}

.content p {
    margin-block-start: 0;
}

a {
    display: block;
}

/* scroll-bar */
body::-webkit-scrollbar {
    display: none;
}
::-webkit-scrollbar {
    width: 15px;
}

::-webkit-scrollbar-track {
    background: black;

}

::-webkit-scrollbar-thumb {
    background: darkgrey;
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: dimgrey;
}

.axis {
    text-shadow: -1px 1px 0 #000,
                1px 1px 0 #000,
                1px -1px 0 #000,
                -1px -1px 0 #000;
}

#rmenu {
    direction: ltr;
}

#rmenu a {
    color: black;
    text-decoration: none;
}

#rmenu a:hover {
    color: black;
    text-decoration: underline;
    font-weight: bold;
}

table {
    background-color: lightgrey;
}

td {
    border-bottom: 1px solid darkgrey;
    text-align: left;
    padding: 10px 0 10px 20px;
}

td:last-child {
    text-align: right;
    padding: 10px 20px 10px 0;
}

td span {
    text-align: right;
}

tr:last-child td {
    border-bottom-width: 0px;
}

@media screen {
	.container div { display: block; }
	#hide { display: none; }
}

@media print {
	.container div { display: none; }
	#hide { display: block; }
}
