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 */
}

table {
	background-color:#DDFFDD ;
 /*   background-color: #F0FFFF; */
    border: 1px solid black;
    border-radius: 7px; 
    width: 50%;


#buttons input {
    margin-bottom: .5em;
    font-size: 15px;
    font-weight: bold;
    border-radius: 7px; 
}
#Errorbutton input {
    margin-bottom: .5em;
	font-size: 15px;
	font-weight: bold;
	border-radius: 7px; 
}

.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;
}