/* Base Styles */
body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #121212;
    color: #f1f1f1;
    display: flex;
    flex-direction: column;
    height: 100vh;
	overflow: none;
}

/* Top Menu */
header {
    background-color: #1e1e1e;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 10;
}

header h1 {
    color: #fff;
    margin: 0;
}

nav a {
    color: #ddd;
    text-decoration: none;
    margin: 0 15px;
    font-size: 16px;
}

nav a:hover {
    color: #f1f1f1;
    cursor: pointer; /* You can replace 'pointer' with other cursor types */
}

a:hover {
    cursor: pointer; /* You can replace 'pointer' with other cursor types */
}

/* Main Layout */
.main-container {
    display: flex;
    justify-content: space-between;
    height: 80%; /* Ensure full height */
}

#content {
    flex: 1 0 65%; /* Flex to take 65% of the width */
    height: 90%;
}

#map {
    flex: 1;
    height: 100%;
}
/* Results Box */
#results-box {
  flex: 1 0 10%;
  height: 10%;
  background-color: #1e1e1e;
  padding: 15px;
  overflow-y: none;
  border-top: 2px solid #333;
}

/* Side Pane - Toolbox */
#side-pane {
    width: 180px; /* Adjust width as necessary */
    background-color: #333;
    padding: 20px;
    box-shadow: 2px 0 5px rgba(0, 0, 0, 0.1);
    height: 100%;
    overflow-y: none; /* Ensure side pane is scrollable if content overflows */
}



#side-pane h3 {
    color: #f1f1f1;
}

.form-group {
    margin-bottom: 15px;
    width: 100%;
}

.form-group label {
    color: #ccc;
    font-size: 14px;
}

.form-group input {
    background-color: #333;
    color: #fff;
    border: 1px solid #444;
    width: 100%;
    padding: 8px;
    font-size: 14px;
    border-radius: 5px;
}

.form-group button {
    background-color: #4CAF50;
    color: white;
    padding: 10px 15px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    width: 100%;
    font-size: 16px;
}

.form-group button:hover {
    background-color: #45a049;
}

p {
    font-family: Arial, sans-serif;
    font-size: 1.2rem;
    background: #1e1e2f;
    color: #f1f1f1;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    text-align: center;
    margin: 20px auto;
    display: inline-block;
    border: 1px solid #444;
}

p:empty {
    display: none;
}

.icon {
    color: #4caf50;
    margin-right: 10px;
    font-size: 1.5rem;
}

strong {
    color: #90caf9;
}

.distance {
    font-weight: bold;
    color: #ff7043;
}

h2 {
    font-size: 2rem;
    text-align: center;
    padding: 10px;
    background: linear-gradient(145deg, #1e1e2f, #2c2c44);
    border: 2px solid #444;
    border-radius: 10px;
    display: inline-block;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.5);
    text-transform: uppercase;
    color: #90caf9;
}

h2 u {
    text-decoration: none;
    border-bottom: 3px solid #ff7043;
    padding-bottom: 2px;
}

h2 span {
    color: #ff7043;
}

.tooltiphover {
    background-color: rgba(0, 0, 0, 0.8);  /* Dark background */
    color: white;                          /* White text */
    font-size: 14px;                        /* Font size */
    padding: 5px 10px;                      /* Padding around the text */
    border-radius: 5px;                     /* Rounded corners */
    box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.3); /* Shadow for better visibility */
    max-width: 150px;                       /* Limit width of the tooltip */
    text-align: center;                     /* Center the text inside the tooltip */
}
