.sam-map {
    position: relative;
    margin: 20px 0;
}

.sam-map-canvas {
    width: 100%;
    height: 400px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.sam-tooltip {
    position: fixed;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.8);
    color: #fff;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 14px;
    pointer-events: none;
    max-width: 200px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.sam-office-info {
    padding: 10px;
    max-width: 300px;
}

.sam-office-info h3 {
    margin: 0 0 10px 0;
    font-size: 16px;
    color: #333;
}

.sam-office-info p {
    margin: 0 0 8px 0;
    font-size: 14px;
    line-height: 1.4;
}

.sam-office-info strong {
    color: #666;
}

/* Responsive styles */
@media screen and (max-width: 782px) {
    .sam-map-canvas {
        height: 300px;
    }

    .sam-office-info {
        max-width: 250px;
    }
} 