.sld-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1200;
}

.sld-toggle-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #3b82f6;
    color: white;
    border: none;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: all 0.3s ease;
}

.sld-toggle-btn:hover {
    background: #2563eb;
    transform: translateY(-2px);
}

.sld-panel {
    position: absolute;
    bottom: 60px;
    right: 0;
    width: 350px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transform: translateX(120%);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    overflow: hidden;
    border: 1px solid #f1f5f9;
    max-height: 80vh;
    display: flex;
    flex-direction: column;
}

.sld-panel.open {
    transform: translateX(0);
}

.sld-header {
    padding: 16px;
    border-bottom: 1px solid #f1f5f9;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #f8fafc;
}

.sld-header h5 {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
}

.sld-close-btn {
    background: none;
    border: none;
    color: #64748b;
    cursor: pointer;
    font-size: 16px;
    padding: 4px;
    transition: color 0.2s;
}

.sld-close-btn:hover {
    color: #334155;
}

.nav-tabs {
    border-bottom: 1px solid #f1f5f9;
    padding: 0 16px;
}

.nav-tabs .nav-link {
    color: #64748b;
    border: none;
    padding: 12px 16px;
    font-size: 14px;
    font-weight: 500;
    border-bottom: 3px solid transparent;
    transition: all 0.2s;
}

.nav-tabs .nav-link:hover {
    color: #3b82f6;
    border-bottom: 3px solid #e2e8f0;
}

.nav-tabs .nav-link.active {
    color: #3b82f6;
    background-color: transparent;
    border-bottom: 3px solid #3b82f6;
}

.sld-content {
    padding: 20px;
    overflow-y: auto;
}

.saved-maps-container {
    max-height: 400px;
    overflow-y: auto;
}

.saved-map-card {
    padding: 16px;
    border-radius: 12px;
    border: 1px solid #f1f5f9;
    margin-bottom: 12px;
    transition: all 0.2s;
    background-color: white;
}

.saved-map-card:hover {
    border-color: #e2e8f0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transform: translateY(-2px);
}

.saved-map-card h6 {
    margin: 0 0 4px 0;
    font-weight: 600;
}

.saved-map-card p {
    margin: 0 0 12px 0;
    font-size: 13px;
    color: #64748b;
}

.saved-map-card .btn-sm {
    padding: 6px 12px;
    font-size: 13px;
}

.delete-confirm-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(255, 255, 255, 0.9);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 1;
    border-radius: 12px;
    padding: 20px;
}

.delete-confirm-overlay p {
    margin-bottom: 16px;
}

.tab-content {
    flex: 1;
    overflow: hidden;
    display: flex;
}

.tab-pane {
    flex: 1;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}