.myheadericon {
    background: purple;
    border-radius: 50%;
    transition: all 0.3s ease-in-out; /* Smooth hover effect */
}

.myheadericon:hover {
    background: green;
    transform: scale(1.05); /* Slight zoom effect */
}

.myicon {
    width: 30px;
    height: 30pxs;
}

/* Dropdown */
.dropdown {
    float: left;
    overflow: hidden;
}

.dropdown-content {
    all: unset;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 1;
    color: black;
}

.dropdown-content a {
    float: none;
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    text-align: left;
}

.dropdown-content a a:hover {
    background-color: green;
}

.card-like {
    display: block;
    padding: 10px 15px;
    margin: 1px;
    background: #f8f9fa; /* Light gray background */
    border: 1px solid #ddd; /* Light border */
    text-align: start; /* Center text */
    color: black !important; /* Default text color */
    text-decoration: none; /* Remove underline */
    transition: all 0.3s ease-in-out; /* Smooth hover effect */
}

.card-like:hover {
    background: #41da04; /* Blue background */
    color: white !important; /* White text on hover */
    transform: scale(1.05); /* Slight zoom effect */
}

.p-address {
    font-size: 10px;
    font-weight: bold;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.mypin {
    width: 15px;
}

.pname {
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
/* Map Info */
#map {
    height: 500px;
}

#description {
    font-family: Roboto;
    font-size: 15px;
    font-weight: 300;
}

#infowindow-content .title {
    font-weight: bold;
    color: #000;
}

#infowindow-content {
    display: none;
}

#map #infowindow-content {
    display: inline;
}

.pac-card {
    background-color: #fff;
    border: 0;
    border-radius: 2px;
    box-shadow: 0 1px 4px -1px rgba(0, 0, 0, 0.3);
    margin: 10px;
    padding: 0 0.5em;
    font: 400 18px Roboto, Arial, sans-serif;
    overflow: hidden;
    font-family: Roboto;
    padding: 0;
}

#pac-container {
    padding-bottom: 12px;
    margin-right: 12px;
}

.pac-controls {
    display: inline-block;
    padding: 5px 11px;
}

.pac-controls label {
    font-family: Roboto;
    font-size: 13px;
    font-weight: 300;
}

#pac-input {
    background-color: #fff;
    font-family: Roboto;
    font-size: 15px;
    font-weight: 300;
    margin-left: 12px;
    padding: 0 11px 0 13px;
    text-overflow: ellipsis;
    width: 400px;
}

#pac-input:focus {
    border-color: #4d90fe;
}

#title {
    color: #000;
    background-color: #4d90fe;
    font-size: 25px;
    font-weight: 500;
    padding: 6px 12px;
}

/* Dashboard */
.sidebar a {
    color: white;
    padding: 10px;
    display: block;
    text-decoration: none;
}

.sidebar a {
    color: black;
}

.sidebar a:hover {
    background: white;
    border-radius: 15%;
    box-shadow: 2px 0 5px rgba(0, 0, 0, 0.1);
    margin: 20px;
}

.main-content {
    padding-top: 50px;
    padding-left: 20px;
    padding-right: 20px;
}

.card-custom {
    border-radius: 10px;
}

#sidebar {
    background: #d9e4ee;
    color: white;
    transition: transform 0.3s ease-in-out;
    padding-top: 20px;
    z-index: 15;
    border: solid 0.5px rgb(235, 235, 235);
    border-radius: 1%;
    box-shadow: 2px 0 5px rgba(0, 0, 0, 0.1);
}

.toggle-btn {
    position: fixed;
    top: 50px;
    right: 20px;
    z-index: 1000;
    background: #343a40;
    color: white;
    border: none;
    padding: 10px 15px;
    border-radius: 5px;
}

@media (max-width: 768px) {
    #sidebar {
        display: none;
        position: fixed;
        transform: translateX(-100%);
        height: 100vh;
    }

    #sidebar.active {
        transform: translateX(0);
    }
}

.floating-toggle {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: none;
}
@media (max-width: 768px) {
    .floating-toggle {
        display: block;
    }
    .desktop-btn {
        display: none;
    }
}
