/* Top-Right Buttons Container */
#top-right-buttons {
    position: absolute;
    top: 12%; /* Adjust distance from the top as needed */
    left: 28px; /* Adjust distance from the right as needed */
    display: flex;
    gap: 2.5px;
    background-color: transparent;
    padding: 5px 10px;
    z-index: 1000;
}

/* Button styles using images as backgrounds */
#project {
    background-image: url('images/Button_1.png'); /* Path to the 'Project' button image */
    background-size: 90% 81%; /* Scale image to 80% of button size */
    background-repeat: no-repeat;
    background-color: transparent;
    background-position: center;
    width: 100px; /* Set button width */
    height: 50px; /* Set button height */
    border: none; /* Remove border */
    cursor: pointer;
}

/* General button styling */
.button-style {
    background-color:rgba(158, 157, 157, 0.937); /* Light gray background */
    border: 2px solid #c04f15; /* Orange border */
    color: #c04f15; /* Orange text color */
    font-size: 1.3em; /* Adjust font size as needed */
    font-family: Corbel; /* Use Corbel font if available */
    padding: 1px 1.5px; /* Padding for spacing */
    text-align: center;
    display: inline-block;
    border-radius: 0px; /* Slightly rounded corners */
    text-decoration: none;
    font-weight: bold;
    cursor: pointer;
    position: relative;
    box-shadow: inset 0 0 5px rgba(255, 120, 20, 0.5); /* Inner shadow for depth */
    transition: transform 0.1s ease, box-shadow 0.1s ease;
}

/* Text shadow for the embossed effect */
.button-style span {
    text-shadow: 1px 1px 2px rgba(192, 79, 21, 0.5); /* Shadow around text */
}

/* Hover effect */
.button-style:hover {
    transform: scale(1.05); /* Slight zoom effect */
    box-shadow: 0 0 8px rgba(192, 79, 21, 0.5); /* Outer shadow on hover */
}

/* Example of usage in HTML */


#developers {
    background-image: url('images/Button_2.png'); /* Path to the 'Developers' button image */
    background-size: cover;
    background-color: transparent;
    background-repeat: no-repeat;
    background-size: 90% 80.8%; /* Scale image to 80% of button size */
    background-repeat: no-repeat;
    background-position: center;
    width: 100px; /* Set button width */
    height: 50px; /* Set button height */
    border: none; /* Remove border */
    cursor: pointer;
}

/* Modal container (hidden by default) */
.modal {
    display: none; /* Hidden by default */
    position: fixed;
    z-index: 1001; /* Above map and other elements */
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent background */
}

/* Modal content box */
.modal-content {
    position: relative;
    background-color: #ffffff;
    margin: 10% auto; /* Center the modal */
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
    max-width: 600px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    border-radius: 8px;
}

/* Close button */
.close {
    position: absolute;
    top: 10px;
    right: 15px;
    color: #aaa;
    font-size: 24px;
    font-weight: bold;
    cursor: pointer;
}

.close:hover,
.close:focus {
    color: #000;
    text-decoration: none;
    cursor: pointer;
}

