.calculatorRow {
	background-color:#fff;
}

.column-results{
	padding-left: 20px!important;
	height:auto;
	padding:5px;
	padding-right:20px; 
	background-color:#fff;
	font-family: 'Open Sans', sans-serif;
	font-size:15px;

}


#map {
	width: 100%;
	height:100vh;

	padding-left:20px;
	outline: none !important;  
	cursor: pointer;
}

#map, #map:focus, #map *:focus {
    outline: none !important;
}


.context-menu {
    position: fixed;
    background-color: #fff;
    border: 1px solid #ccc;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    width: 200px;
    display: none;
    z-index: 1000;
}

.context-menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.context-menu ul li {
    padding: 10px 15px;
    cursor: pointer;
    color: #333;
    font-size: 14px;
    display: flex;
    align-items: center;
}

.context-menu ul li i {
    margin-right: 10px;
    width: 20px;
    text-align: center;
}

.context-menu ul li:hover {
    background-color: #f0f0f0;
}

button:focus {
outline: none;
}

.input-group {
	display: inline-flex;
	border: 1px solid #ccc;
	border-radius: 5px;
	overflow: hidden;
	width: 100%; /* You can adjust this width as needed */
}
.input-group input {
	border: none;
	padding: 12px 10px 12px 0;
	outline: none;
	flex-grow: 1;
	margin-left:10px;
}
.input-group input:disabled {
	background: white;
	border: none;
	padding: 12px 10px 12px 0;
	outline: none;
	flex-grow: 1;
}

.input-group i {
	padding: 12px;
	background-color: #f0f0f0;
	color: #555;
	
}
.input-group button {
	background-color: #ddbb6a;
	color: white;
	border: none;
	padding: 12px 15px;
	cursor: pointer;
	font-weight: bold;
}
.input-group button:hover {
	background-color: #aa8f51;
}
label {
	display: block;
	margin-bottom: 5px;
	font-weight: bold;
	color:black;
}



.table-wrapper {
	overflow-x:scroll;
}

table {
	
	margin-top:20px;
	width: 100%;
	border-collapse: collapse;
	border-spacing: 0;
    color:black;
	min-width: 760px;
}
th, td {
	padding: 8px;
	text-align: left;
	border-bottom: 1px solid #ddd;
}

th {
	background-color: #f2f2f2;
	font-weight: bold;
}

.order-button {
	background-color: #ddbb6a;
	color: white;
	padding: 8px 18px;
	border: none;
	border-radius: 4px;
	cursor: pointer;
	width:100%;
}
.order-button:hover {
	background-color: #9e864c;
}

.disabled-button:disabled {
	background-color: #a08e65;
	color: rgb(92, 92, 92);
	padding: 8px 18px;
	border: none;
	border-radius: 4px;
	cursor: pointer;
	width:100%;
}

@media (max-width: 760px) {


.column-results{
	font-size:2.5vw;
}
.order-button {
	padding: 6px 6px;
	width:80%;
	font-size:1.5vw;
}

.disabled-button:disabled {
	padding: 6px 6px;
	width:80%;
	font-size:1.5vw;
}

#map {
	height:80vw;
}


table {
	min-width: 540px;
}
}

.tooltip1 {
    position: relative;
    display: inline-block;
    cursor: pointer;
    border-bottom: 1px dotted black; /* Optional: adds underline to indicate hoverable */
}


.tooltip1-content.top {
	width: 200px;
    position: absolute;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    visibility: hidden;
    background-color: black;
    color: white;
    text-align: center;
    border-radius: 6px;
    padding: 5px 10px;
    z-index: 10000;
    opacity: 0;
    transition: visibility 0.2s, opacity 0.2s ease-in-out;
}

.tooltip1-content.bottom {
	width: 200px;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    visibility: hidden;
    background-color: black;
    color: white;
    text-align: center;
    border-radius: 6px;
    padding: 5px 10px;
    z-index: 10000;
    opacity: 0;
    transition: visibility 0.2s, opacity 0.2s ease-in-out;
}

.tooltip1-content.left {
	width: 200px;
    position: absolute;
    right: 50%;
    top: 50%;
    transform: translateY(-50%);
    visibility: hidden;
    background-color: black;
    color: white;
    text-align: center;
    border-radius: 6px;
    padding: 5px 10px;
    z-index: 10000;
    opacity: 0;
    transition: visibility 0.2s, opacity 0.2s ease-in-out;
}

.tooltip1-content.right {
	width: 200px;
    position: absolute;
    left: 100%;
    top: 50%;
    transform: translateY(-50%);
    visibility: hidden;
    background-color: black;
    color: white;
    text-align: center;
    border-radius: 6px;
    padding: 5px 10px;
    z-index: 10000;
    opacity: 0;
    transition: visibility 0.2s, opacity 0.2s ease-in-out;
}

.tooltip1-content.topRight {
	width: 200px;
    position: absolute;
    left: 150%;
    bottom: 100%;
    transform: translateX(-50%);
    visibility: hidden;
    background-color: black;
    color: white;
    text-align: center;
    border-radius: 6px;
    padding: 5px 10px;
    z-index: 10000;
    opacity: 0;
    transition: visibility 0.2s, opacity 0.2s ease-in-out;
}


