/*woohoomap-admin.css*/
.woohoomap-dashboard {
    margin-top: 20px;
}

.woohoomap-stats {
    margin-bottom: 30px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.stat-box {
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    text-align: center;
}

.stat-box h3 {
    margin: 0 0 10px 0;
    font-size: 16px;
    color: #666;
}

.stat-box p {
    margin: 0;
    font-size: 24px;
    font-weight: bold;
    color: #0073aa;
}

.woohoomap-settings {
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.woohoomap-credits table {
    margin-top: 20px;
}

.woohoomap-credits .credits-editor {
    display: inline-block;
    margin-left: 10px;
}

.woohoomap-credits .credits-input {
    width: 80px;
    margin-right: 5px;
}

.woohoomap-credits .save-credits,
.woohoomap-credits .cancel-credits {
    margin-left: 5px;
}

.woohoomap-credits .button:disabled {
    cursor: not-allowed;
    opacity: 0.7;
}

.woohoomap-connections table {
    margin-top: 20px;
}

.woohoomap-connections .connection-date,
.woohoomap-connections .connection-description,
.woohoomap-connections .connection-location {
    max-width: 200px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.woohoomap-connections .edit-connection,
.woohoomap-connections .delete-connection {
    margin-left: 5px;
}

/* Modal Styles */
.woohoomap-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
    z-index: 100000;
}

.woohoomap-modal.active {
    display: block;
}

.woohoomap-modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    padding: 20px;
    border-radius: 8px;
    max-width: 800px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.woohoomap-modal-content h2 {
    margin-top: 0;
    padding-bottom: 15px;
    border-bottom: 1px solid #ddd;
    font-size: 1.5em;
    color: #23282d;
}

.credit-history-table {
    margin-top: 20px;
}

.credit-history-table table {
    width: 100%;
    border-collapse: collapse;
}

.credit-history-table th {
    text-align: left;
    padding: 12px;
    background: #f5f5f5;
    border-bottom: 2px solid #e1e1e1;
    font-weight: 600;
}

.credit-history-table td {
    padding: 12px;
    border-bottom: 1px solid #e1e1e1;
}

.credit-history-table td.loading {
    text-align: center;
    padding: 20px;
    color: #666;
}

.credit-history-table .positive {
    color: #46b450;
    font-weight: 600;
}

.credit-history-table .negative {
    color: #dc3232;
    font-weight: 600;
}

.woohoomap-modal .close-modal {
    position: absolute;
    top: 15px;
    right: 15px;
    cursor: pointer;
    font-size: 24px;
    color: #666;
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    border-radius: 50%;
    transition: all 0.2s ease;
}

.woohoomap-modal .close-modal:hover {
    color: #dc3232;
    background: #f5f5f5;
}

/* Responsive styles */
@media (max-width: 782px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }

    .woohoomap-modal-content {
        width: 95%;
        padding: 15px;
        margin: 20px auto;
    }

    .credit-history-table {
        overflow-x: auto;
    }

    .credit-history-table table {
        min-width: 600px;
    }

    .woohoomap-credits .credits-editor {
        display: block;
        margin: 10px 0;
    }

    .woohoomap-credits .button {
        margin: 5px;
    }
} 





































/*woohoomap-dashboard.css*/
.woohoomap-dashboard {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.dashboard-section {
    background: #FFFFFF;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    padding: 20px;
    margin-bottom: 20px;
}

.dashboard-section h2 {
    margin: 0 0 20px 0;
    color: #333333;
    font-size: 24px;
}

/* Credits Section */
.credits-section {
    text-align: center;
}

.credits-display {
    margin: 20px 0;
}

.credits-amount {
    font-size: 48px;
    font-weight: bold;
    color: #0073AA;
}

.credits-label {
    font-size: 18px;
    color: #666666;
    margin-left: 10px;
}

.purchase-credits-btn {
    background: #0073AA;
    color: #FFFFFF;
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    transition: background 0.2s ease;
}

.purchase-credits-btn:hover {
    background: #005177;
}

/* Connections Section */
.connections-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.connection-item {
    background: #F5F5F5;
    border-radius: 4px;
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.connection-details h3 {
    margin: 0 0 5px 0;
    font-size: 16px;
    color: #333333;
}

.connection-details .date {
    margin: 0;
    font-size: 14px;
    color: #666666;
}

.connection-actions .view-btn {
    background: #0073AA;
    color: #FFFFFF;
    text-decoration: none;
    padding: 8px 16px;
    border-radius: 4px;
    font-size: 14px;
    transition: background 0.2s ease;
}

.connection-actions .view-btn:hover {
    background: #005177;
}

/* Replies Sections */
.replies-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.reply-item {
    background: #F5F5F5;
    border-radius: 4px;
    padding: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.reply-profile-picture img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.reply-details h3 {
    margin: 0 0 5px 0;
    font-size: 16px;
    color: #333333;
}

.reply-details .date,
.reply-details .status {
    margin: 0;
    font-size: 14px;
    color: #666666;
}

.reply-actions {
    margin-left: auto;
    display: flex;
    gap: 10px;
}

.reply-actions button {
    padding: 8px 16px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    transition: background 0.2s ease;
}

.approve-reply-btn {
    background: #4CAF50;
    color: #FFFFFF;
}

.approve-reply-btn:hover {
    background: #388E3C;
}

.flag-reply-btn {
    background: #F44336;
    color: #FFFFFF;
}

.flag-reply-btn:hover {
    background: #D32F2F;
}

.send-message-btn {
    background: #0073AA;
    color: #FFFFFF;
}

.send-message-btn:hover {
    background: #005177;
}

/* Modals */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
}

.modal-content {
    position: relative;
    background: #FFFFFF;
    margin: 15% auto;
    padding: 20px;
    width: 90%;
    max-width: 500px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.modal .close {
    position: absolute;
    right: 20px;
    top: 20px;
    font-size: 24px;
    cursor: pointer;
    color: #666666;
}

.modal h2 {
    margin: 0 0 20px 0;
    color: #333333;
    font-size: 24px;
}

.credit-options {
    margin-bottom: 20px;
}

.credit-option {
    margin-bottom: 10px;
    padding: 10px;
    border: 1px solid #DDDDDD;
    border-radius: 4px;
}

.credit-option input[type="radio"] {
    margin-right: 10px;
}

.proceed-btn,
.send-btn {
    background: #0073AA;
    color: #FFFFFF;
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    width: 100%;
    transition: background 0.2s ease;
}

.proceed-btn:hover,
.send-btn:hover {
    background: #005177;
}

#message-form textarea {
    width: 100%;
    height: 150px;
    padding: 10px;
    border: 1px solid #DDDDDD;
    border-radius: 4px;
    margin-bottom: 20px;
    resize: vertical;
}

/* No Data Message */
.no-data {
    text-align: center;
    color: #666666;
    font-style: italic;
    padding: 20px;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .woohoomap-dashboard {
        padding: 10px;
    }

    .dashboard-section {
        padding: 15px;
    }

    .connections-list,
    .replies-list {
        grid-template-columns: 1fr;
    }

    .modal-content {
        margin: 10% auto;
        width: 95%;
    }
} 
























/*woohoomap-public.css*/
.woohoomap-message {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 15px 20px;
    border-radius: 4px;
    font-size: 14px;
    z-index: 10000;
    max-width: 300px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    animation: slideIn 0.3s ease-out;
}

.woohoomap-message.info {
    background-color: #e3f2fd;
    color: #1976d2;
    border: 1px solid #bbdefb;
}

.woohoomap-message.success {
    background-color: #e8f5e9;
    color: #2e7d32;
    border: 1px solid #c8e6c9;
}

.woohoomap-message.error {
    background-color: #ffebee;
    color: #c62828;
    border: 1px solid #ffcdd2;
}

.woohoomap-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
    z-index: 9999;
}

.woohoomap-modal-content {
    position: relative;
    background-color: #fff;
    margin: 10% auto;
    padding: 20px;
    width: 80%;
    max-width: 500px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
} 


























/*woohoomap.css*/
.woohoomap-container {
    /* position: relative; */
    /* width: 100%; */
    /* height: 100%; */
    /* min-height: 400px; */
    /* display: flex; */
    /* flex-direction: column; */
    height: 400px;
    width: 100%;
}

#woohoomap-map {
    /* height: 100%; */
    /* border-radius: 8px; */
    /* box-shadow: 0 2px 4px rgba(0,0,0,0.1); */
    /* flex: 1; */
    height: 100%;
    width: 100%;
}

#map {
    width: 100%;
    height: 100%;
}

/* Commenting out complex responsive behavior */
/* @media screen and (max-width: 768px) {
    .woohoomap-container,
    #woohoomap-map {
        height: 400px;
    }
} */

/* Google Maps Overrides */
.gm-style {
    z-index: 1;
}

/* Navigation Control */
.gmnoprint {
    z-index: 1000 !important;
}

/* Controls Layer */
.controls-layer {
    z-index: 1000;
}

/* Search HUD and Pin Counter */
.search-hud,
.woohoomap-pin-counter {
    z-index: 1001;
}

/* Left and Right Drawers */
.woohoomap-left-drawer,
.woohoomap-right-drawer {
    z-index: 1002;
}

.woohoomap-search {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    width: 90%;
    max-width: 800px;
}

.woohoomap-search-inner {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* Date Picker Styles */
.date-picker-group {
    width: 100%;
}

.date-picker-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
    background: #f9fafb;
    padding: 10px 15px;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
    cursor: pointer;
}

.date-picker-wrapper i {
    color: #6b7280;
}

.woohoomap-date-picker {
    flex: 1;
    border: none;
    background: transparent;
    font-size: 14px;
    color: #374151;
    cursor: pointer;
    padding: 0;
}

.woohoomap-date-picker:focus {
    outline: none;
}

.date-picker-dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    margin-top: 5px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    z-index: 10;
    padding: 8px;
}

.date-picker-wrapper:focus-within .date-picker-dropdown {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.date-preset {
    background: none;
    border: none;
    padding: 8px 12px;
    text-align: left;
    font-size: 14px;
    color: #374151;
    cursor: pointer;
    border-radius: 4px;
    transition: all 0.2s;
}

.date-preset:hover {
    background: #f3f4f6;
}

/* Location Search Styles */
.location-search-wrapper {
    width: 100%;
}

.woohoomap-search-input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    font-size: 14px;
    color: #374151;
    background: #f9fafb;
    transition: all 0.2s;
}

.woohoomap-search-input:focus {
    outline: none;
    border-color: #f8b3bc;
    background: #fff;
}

.woohoomap-search-input::placeholder {
    color: #9ca3af;
}

/* Find Button Styles */
.woohoomap-find-button {
    width: 100%;
    padding: 12px 24px;
    background: #f8b3bc;
    border: none;
    border-radius: 8px;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    cursor: pointer;
    transition: all 0.2s;
}

.woohoomap-find-button:hover {
    background: #f69aa5;
}

.woohoomap-find-button i {
    font-size: 16px;
}

/* Responsive Styles */
@media (min-width: 768px) {
    .woohoomap-search-inner {
        flex-direction: row;
        align-items: center;
    }

    .date-picker-group {
        width: 200px;
        flex-shrink: 0;
    }

    .location-search-wrapper {
        flex: 1;
    }

    .woohoomap-find-button {
        width: auto;
    }

    #woohoomap-map {
        height: 500px !important;
        min-height: 400px !important;
    }
    
    .woohoomap-container {
        height: 500px !important;
        min-height: 400px !important;
    }
}

/* Flatpickr Customization */
.flatpickr-calendar {
    border-radius: 12px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    border: 1px solid #e5e7eb;
}

.flatpickr-day.selected {
    background: #f8b3bc;
    border-color: #f8b3bc;
}

.flatpickr-day.selected:hover {
    background: #f69aa5;
    border-color: #f69aa5;
}

.woohoomap-info-window {
    padding: 15px;
    max-width: 300px;
}

.woohoomap-info-window h3 {
    margin: 0 0 10px 0;
    font-size: 18px;
}

.woohoomap-info-window p {
    margin: 5px 0;
    font-size: 14px;
    line-height: 1.4;
}

.woohoomap-contact-button {
    margin-top: 10px;
    padding: 8px 15px;
    background-color: #4CAF50;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    transition: background-color 0.2s ease;
}

.woohoomap-contact-button:hover {
    background-color: #45a049;
}

.woohoomap-message {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    padding: 10px 20px;
    border-radius: 4px;
    z-index: 3;
    animation: fadeIn 0.3s ease;
}

.woohoomap-message-info {
    background: #e7f5ff;
    color: #0073aa;
}

.woohoomap-message-error {
    background: #ffe7e7;
    color: #d63638;
}

.woohoomap-container.loading::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.7);
    z-index: 2;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translate(-50%, 10px); }
    to { opacity: 1; transform: translate(-50%, 0); }
}

@keyframes pulse-border {
    0% {
        border-color: rgba(255, 0, 0, 1);
        box-shadow: 0 0 10px rgba(255, 0, 0, 0.2);
    }
    50% {
        border-color: rgba(255, 0, 0, 0.5);
        box-shadow: 0 0 15px rgba(255, 0, 0, 0.4);
    }
    100% {
        border-color: rgba(255, 0, 0, 1);
        box-shadow: 0 0 10px rgba(255, 0, 0, 0.2);
    }
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .woohoomap-container {
        height: 400px !important;
        min-height: 400px !important;
    }
    
    #woohoomap-map {
        height: 400px !important;
        min-height: 400px !important;
    }
    
    .woohoomap-search {
        position: relative;
        top: 0;
        left: 0;
        right: 0;
        margin-bottom: 10px;
    }
    
    .woohoomap-search-row {
        flex-direction: column;
    }

    .woohoomap-date-presets.layout-horizontal {
        flex-wrap: wrap;
    }
}

/* Connection Details Panel */
.connection-details {
    position: absolute;
    top: 0;
    right: -400px;
    width: 400px;
    height: 100%;
    background: white;
    box-shadow: -2px 0 10px rgba(0,0,0,0.1);
    transition: right 0.3s ease;
    z-index: 1000;
    overflow-y: auto;
}

.connection-details.active {
    right: 0;
}

.panel-header {
    padding: 1.5rem;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #f8f9fa;
}

.panel-header h3 {
    margin: 0;
    font-size: 1.2rem;
    font-weight: 500;
    color: #333;
}

.close-btn {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #666;
    cursor: pointer;
    padding: 0.5rem;
    line-height: 1;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.close-btn:hover {
    background: #f5f5f5;
}

.panel-content {
    padding: 1.5rem;
}

.info-section {
    margin-bottom: 1.5rem;
}

.info-section h4 {
    margin: 0 0 1rem 0;
    font-size: 1.1rem;
    color: #333;
}

.info-section p {
    margin: 0.5rem 0;
    color: #666;
    line-height: 1.4;
}

.info-section strong {
    color: #333;
    font-weight: 500;
}

/* Mobile Responsive */
@media screen and (max-width: 768px) {
    .connection-details {
        width: 100%;
        right: -100%;
    }
}

.woohoomap-footer {
    display: none;
}

.woohoomap-left-drawer {
    position: absolute;
    top: 0;
    left: -400px; /* Start off-screen */
    width: 400px;
    height: 100%;
    background: white;
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
    transition: left 0.3s ease;
    z-index: 1000;
}

.woohoomap-left-drawer.active {
    left: 0;
}

.left-drawer-header {
    padding: 12px 16px;
    border-bottom: 1px solid #E8EAED;
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.left-drawer-header h2 {
    margin: 0;
    font-size: 20px;
    color: #202124;
    font-weight: 500;
}

.left-drawer-subheading {
    margin: 4px 0 0;
    font-size: 14px;
    color: #5F6368;
}

.left-drawer-close {
    background: none;
    border: none;
    font-size: 24px;
    color: #666;
    padding: 4px;
    cursor: pointer;
    line-height: 1;
    margin-left: 15px;
}

.left-drawer-close:hover {
    color: #333;
}

.left-drawer-content {
    padding: 0;
    height: calc(100% - 65px); /* Adjusted for new header height */
    overflow-y: auto;
}

.woohoomap-pin-counter {
    position: absolute;
    bottom: 20px;
    left: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px 12px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: transform 0.2s ease;
    z-index: 999; /* Below drawer but above map */
}

.woohoomap-pin-counter:hover {
    transform: scale(1.05);
}

.woohoomap-counter-number {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-right: 8px;
}

.woohoomap-counter-pin {
    width: 24px;
    height: 24px;
    fill: none;
    stroke: #f7374f;
    stroke-width: 2.4;
    fill-opacity: 0.7;
}

.connection-item {
    padding: 12px 16px;
    display: flex;
    align-items: flex-start;
    min-height: 72px;
    cursor: pointer;
    transition: background-color 0.15s ease;
    position: relative;
}

.connection-item:hover {
    background-color: #F8F9FA;
}

.connection-item:not(:last-child) {
    border-bottom-width: 1px;
    border-bottom-style: solid;
}

.connection-content {
    flex: 1;
    min-width: 0;
    padding-right: 16px;
}

.connection-item h3 {
    margin: 0 0 4px;
    font-size: 16px;
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.connection-meta {
    display: flex;
    flex-direction: column;
    gap: 4px;
    font-size: 14px;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.meta-icon {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.view-on-map {
    background: none;
    border: none;
    font-size: 14px;
    padding: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 4px;
    margin-left: 16px;
    font-weight: 500;
    transition: color 0.15s ease, background-color 0.15s ease;
    border-radius: 4px;
}

.view-on-map .meta-icon {
    width: 16px;
    height: 16px;
    transition: fill 0.15s ease;
}

/* Mobile Responsive */
@media screen and (max-width: 768px) {
    .woohoomap-left-drawer {
        width: 100%;
        left: -100%;
    }

    .woohoomap-pin-counter {
        bottom: 15px;
        left: 15px;
        padding: 6px 10px;
    }

    .woohoomap-counter-number {
        font-size: 16px;
    }

    .woohoomap-counter-pin {
        width: 20px;
        height: 20px;
    }
}

.no-pins-message {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: none;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.9);
    z-index: 100;
}

.no-pins-content {
    text-align: center;
    padding: 20px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    max-width: 300px;
    position: relative;
}

.no-pins-content .close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
    color: #666;
    padding: 5px;
    line-height: 1;
}

.no-pins-content .close-btn:hover {
    color: #333;
}

.no-pins-content p {
    margin: 0;
    color: #333;
    font-size: 16px;
    line-height: 1.4;
}

.no-pins-content .no-pins-suggestion {
    margin-top: 10px;
    color: #666;
    font-size: 14px;
}

/* Mobile Responsive */
@media screen and (max-width: 768px) {
    .no-pins-content {
        max-width: 90%;
        margin: 0 20px;
    }
} 

/* Search Container Animations */
.search-container {
    display: flex;
    flex-direction: column;
    /* No visual styling */
}

.search-container.active,
.search-container.location-focused,
.search-container.date-focused,
.search-container.search-complete {
    /* No visual styling */
}

@media (max-width: 768px) {
    .search-container {
        position: static;
        width: auto;
        left: auto;
        margin: 0;
        padding: 0;
    }
} 

/* ========================================
   MERGED FROM woohoomap-public.css
   ======================================== */

/* Search Widget Styles */
.woohoomap-search-container {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    padding: 20px;
    margin-bottom: 20px;
}

.woohoomap-search-container .search-row,
.woohoomap-search-container .date-row {
    margin-bottom: 15px;
}

.woohoomap-search-container .input-icon-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.woohoomap-search-container .input-icon-wrapper i {
    position: absolute;
    left: 12px;
    color: #666;
}

.woohoomap-search-container input[type="text"] {
    width: 100%;
    padding: 12px 12px 12px 40px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    transition: border-color 0.3s ease;
}

.woohoomap-search-container input[type="text"]:focus {
    border-color: #0073aa;
    outline: none;
    box-shadow: 0 0 0 1px #0073aa;
}

/* Display Widget Styles */
.woohoomap-container {
    position: relative;
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.woohoomap-container #woohoomap-map {
    width: 100%;
}

.map-container,
.woohoomap-container,
#woohoomap-map {
    width: 100%;
    box-sizing: border-box;
}

/* Connection Details Styles */
.woohoomap-connection-details {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    max-width: 300px;
    z-index: 1000;
}

.woohoomap-connection-details h3 {
    margin: 0 0 10px;
    font-size: 18px;
    color: #333;
}

.woohoomap-connection-details p {
    margin: 0 0 10px;
    font-size: 14px;
    color: #666;
}

.woohoomap-connection-details .close-details {
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
    color: #666;
    font-size: 18px;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .woohoomap-search-container {
        padding: 15px;
    }

    .woohoomap-container {
        min-height: 300px;
    }

    .woohoomap-connection-details {
        position: fixed;
        top: auto;
        bottom: 0;
        left: 0;
        right: 0;
        max-width: none;
        border-radius: 8px 8px 0 0;
    }
} 
 

 

 
