/* Keep only essential styles that aren't covered by TailwindCSS */

/* Table styles for admin pages that still use Bootstrap tables */
.table {
    width: 80%;
    background-color: #FFFFFF;
    border-radius: 10px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    margin: 20px 0;
}

.table th {
    padding: 10px 0px 10px 10px;
    text-align: left;
    font-size: 16px;
    background-color: #F8F8F8;
}

.table tr:hover {
    background-color: #E7E7E7;
}

.table td {
    padding: 10px;  
    text-align: left;
    font-size: 14px;
}

/* Placeholder styles for loading states */
.plh {
    display: inline-block;
    width: 80px;
    height: 1.2em;
    background-color: #d3d3d3;
    border-radius: 4px;
}

/* Google Maps specific styling */
.gm-style-iw {
    font-family: inherit;
}

/* Ensure proper Google Maps controls styling */
.gm-bundled-control {
    font-family: inherit;
}

/* Fix for Google Maps in TailwindCSS reset */
#map img {
    max-width: none !important;
}

#map label {
    width: auto;
    display: inline;
}