body {
    background-image: url('../images/Map_of_Twelve_Tribes_of_Israel.png'); /* Relative or absolute path to your image */
    background-repeat: repeat; /* Optional: Prevents image from repeating */
    background-size: 600px 680px;
		/* Optional: Scales image to cover the entire background */
    background-position: left top; /* Optional: Centers the image */
}

#myListbox {
    background-color: #FFFFFF; /* White background */
    border: 1px solid #ccc;
    padding: 5px;
	border-radius: 8px;
}

table, td, th {
  border: 1px solid black;
  border-radius: 3px;
  font-family: Verdana, sans-serif;
  font-size: 9pt;
  font-weight: bold; 
  position: sticky;
}

th {
    text-align: center;
}
table {
	width: 45%;
}

#ExitButton input {
    margin-bottom: .5em;
	font-size: 15px;
	font-weight: bold;
	border-radius: 7px;
}

.btnPDFChart{
	padding: 5px 25px; 
	background: #DDDDDD;
	border: 1px solid black;
	outline: none; 
	cursor: pointer;
	font-size: 13px;
/*	font-weight: 500; */
	font-weight: bold; 
	border-radius: 5px;
}
tr.border {
	border: 3px solid black;
}
	
.tooltip-container {
    position: relative;
    display: inline-block;
}

.tooltip-text {
    visibility: hidden;
    width: 300px;
    background-color: black;
    color: #fff;
    text-align: center;
    border-radius: 6px;
    padding: 5px 0;
    position: absolute;
    z-index: 1;
    bottom: 125%; /* Position the tooltip above the label */
    left: 50%;
    margin-left: -60px; /* Center the tooltip */
    opacity: 0;
    transition: opacity 0.3s;
}

.tooltip-container:hover .tooltip-text {
    visibility: visible;
    opacity: 1;
}
